import { IObservableCache } from '../IObservableCache'; import { Observable } from 'rxjs'; import { IChangeSet } from '../IChangeSet'; /** * Converts the source to an read only observable cache * @typeparam TObject The type of the object * @typeparam TKey The type of the key * @param source The source */ export declare function asObservableCache(source: IObservableCache): IObservableCache; /** * Converts the source to an read only observable cache * @typeparam TObject The type of the object * @typeparam TKey The type of the key * @param source The source * @param deepEqual Use deep equality with the cache */ export declare function asObservableCache(source: Observable>, deepEqual?: boolean): IObservableCache;