mirror of
https://github.com/fooflington/selfdefined.git
synced 2025-04-22 09:09:09 +00:00
9 lines
318 B
TypeScript
9 lines
318 B
TypeScript
![]() |
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);
|
||
|
}
|