Bones/node_modules/rxjs/Scheduler.d.ts
SOUTHERNCO\x2mjbyrn 7efe7605b8 Template Upload
2017-05-17 13:45:25 -04:00

11 lines
334 B
TypeScript

import { Subscription } from './Subscription';
import { Action } from './scheduler/Action';
export interface Scheduler {
now(): number;
schedule<T>(work: (state?: any) => Subscription | void, delay?: number, state?: any): Subscription;
flush(): void;
active: boolean;
actions: Action[];
scheduledId: number;
}