925154a503882b504cd516c9dc78e42e9be0e6e6e28f76864669de7e808a72988c3d1280f7390cf81f706df2e2e3b27a232c7a3a3574c223e823298b2a9cc4 786 B

123456789101112
  1. import { AsyncAction } from './AsyncAction';
  2. import { AnimationFrameScheduler } from './AnimationFrameScheduler';
  3. import { SchedulerAction } from '../types';
  4. import { TimerHandle } from './timerHandle';
  5. export declare class AnimationFrameAction<T> extends AsyncAction<T> {
  6. protected scheduler: AnimationFrameScheduler;
  7. protected work: (this: SchedulerAction<T>, state?: T) => void;
  8. constructor(scheduler: AnimationFrameScheduler, work: (this: SchedulerAction<T>, state?: T) => void);
  9. protected requestAsyncId(scheduler: AnimationFrameScheduler, id?: TimerHandle, delay?: number): TimerHandle;
  10. protected recycleAsyncId(scheduler: AnimationFrameScheduler, id?: TimerHandle, delay?: number): TimerHandle | undefined;
  11. }
  12. //# sourceMappingURL=AnimationFrameAction.d.ts.map