| 3 | |
| 4 | /** 动画任务 */ |
| 5 | export interface IAnimationTask { |
| 6 | /** 时间偏移 */ |
| 7 | timeOffset: number; |
| 8 | /** 动作队列 */ |
| 9 | actionList: Action[]; |
| 10 | /** 后继任务 */ |
| 11 | nextTaskList: IAnimationTask[]; |
| 12 | } |
| 13 | |
| 14 | export interface IPageConfig extends IStageModelConfig { |
| 15 | duration?: number; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…