summaryrefslogtreecommitdiff
path: root/tools/node_modules/eslint/node_modules/rxjs/internal/operators/timeInterval.d.ts
blob: 6d933ab9eb917a6d3ddbb0618f9cd712463e7605 (plain)
1
2
3
4
5
6
7
import { SchedulerLike, OperatorFunction } from '../types';
export declare function timeInterval<T>(scheduler?: SchedulerLike): OperatorFunction<T, TimeInterval<T>>;
export declare class TimeInterval<T> {
    value: T;
    interval: number;
    constructor(value: T, interval: number);
}