This commit is contained in:
Liam DeBeasi
2019-07-29 16:18:04 -04:00
parent de450438ff
commit 5a71831450
2 changed files with 1 additions and 2 deletions

View File

@@ -2,7 +2,7 @@ export interface Animation {
parentAnimation: Animation | undefined;
elements: HTMLElement[];
childAnimations: Animation[];
_name: any;
animationFinish(): void;
play(): Animation;

View File

@@ -882,7 +882,6 @@ export const createAnimation = () => {
childAnimations,
animationFinish,
_name,
from,
to,
fromTo,