work.suroh.tk/node_modules/rxjs/operators/timeInterval.d.ts

9 lines
318 B
TypeScript
Raw Normal View History

2019-12-02 12:22:45 +00:00
import { IScheduler } from '../Scheduler';
import { OperatorFunction } from '../interfaces';
export declare function timeInterval<T>(scheduler?: IScheduler): OperatorFunction<T, TimeInterval<T>>;
export declare class TimeInterval<T> {
value: T;
interval: number;
constructor(value: T, interval: number);
}