import { BaseMap } from './base-map'; import { ReplaySubject } from 'rxjs'; import { SupportedKeyTypes } from '../interfaces'; /** * Implementation of {@link BaseMap} that uses the `ReplaySubject` based `Observables` */ export declare class ReplayMap extends BaseMap { /** * Construct a new instance and determine the number of * replays to share with subscribers. * * @param replayCount number of values to replay */ constructor(replayCount: number); }