mirror of
https://github.com/fooflington/selfdefined.git
synced 2025-04-22 09:09:09 +00:00
8 lines
288 B
TypeScript
8 lines
288 B
TypeScript
![]() |
import { IScheduler } from '../Scheduler';
|
||
|
import { MonoTypeOperatorFunction } from '../interfaces';
|
||
|
/**
|
||
|
* @method shareReplay
|
||
|
* @owner Observable
|
||
|
*/
|
||
|
export declare function shareReplay<T>(bufferSize?: number, windowTime?: number, scheduler?: IScheduler): MonoTypeOperatorFunction<T>;
|