7 lines
253 B
TypeScript
7 lines
253 B
TypeScript
|
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;
|
||
|
}
|