Last change
on this file since 6c1585f was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
739 bytes
|
Rev | Line | |
---|
[6a3a178] | 1 | import { AsyncAction } from './AsyncAction';
|
---|
| 2 | import { AnimationFrameScheduler } from './AnimationFrameScheduler';
|
---|
| 3 | import { SchedulerAction } from '../types';
|
---|
| 4 | /**
|
---|
| 5 | * We need this JSDoc comment for affecting ESDoc.
|
---|
| 6 | * @ignore
|
---|
| 7 | * @extends {Ignored}
|
---|
| 8 | */
|
---|
| 9 | export declare class AnimationFrameAction<T> extends AsyncAction<T> {
|
---|
| 10 | protected scheduler: AnimationFrameScheduler;
|
---|
| 11 | protected work: (this: SchedulerAction<T>, state?: T) => void;
|
---|
| 12 | constructor(scheduler: AnimationFrameScheduler, work: (this: SchedulerAction<T>, state?: T) => void);
|
---|
| 13 | protected requestAsyncId(scheduler: AnimationFrameScheduler, id?: any, delay?: number): any;
|
---|
| 14 | protected recycleAsyncId(scheduler: AnimationFrameScheduler, id?: any, delay?: number): any;
|
---|
| 15 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.