Browse Source

add isScheduled to AnimationAction.d.ts

error 6 years ago
parent
commit
2f8f5dcd41
1 changed files with 1 additions and 0 deletions
  1. 1 0
      src/animation/AnimationAction.d.ts

+ 1 - 0
src/animation/AnimationAction.d.ts

@@ -19,6 +19,7 @@ export class AnimationAction {
   stop(): AnimationAction;
   reset(): AnimationAction;
   isRunning(): boolean;
+  isScheduled(): boolean;
   startAt(time: number): AnimationAction;
   setLoop(
     mode: AnimationActionLoopStyles,