7 lines
280 B
TypeScript
7 lines
280 B
TypeScript
import { Action } from './Action';
|
|
import { Subscription } from '../Subscription';
|
|
import { QueueScheduler } from './QueueScheduler';
|
|
export declare class AnimationFrameScheduler extends QueueScheduler {
|
|
scheduleNow<T>(work: (x?: any) => Subscription, state?: any): Action;
|
|
}
|