Bones/node_modules/rxjs/scheduler/AnimationFrameAction.d.ts

7 lines
253 B
TypeScript
Raw Normal View History

2017-05-17 13:45:25 -04:00
import { Action } from './Action';
import { FutureAction } from './FutureAction';
export declare class AnimationFrameAction<T> extends FutureAction<T> {
protected _schedule(state?: any, delay?: number): Action;
protected _unsubscribe(): void;
}