From 5a718314504ea0cfee3da066951a539f4fb76ba9 Mon Sep 17 00:00:00 2001 From: Liam DeBeasi Date: Mon, 29 Jul 2019 16:18:04 -0400 Subject: [PATCH] clean up --- core/src/utils/animation/animation-interface.ts | 2 +- core/src/utils/animation/animation.ts | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/core/src/utils/animation/animation-interface.ts b/core/src/utils/animation/animation-interface.ts index 688bc72550..347278ff37 100644 --- a/core/src/utils/animation/animation-interface.ts +++ b/core/src/utils/animation/animation-interface.ts @@ -2,7 +2,7 @@ export interface Animation { parentAnimation: Animation | undefined; elements: HTMLElement[]; childAnimations: Animation[]; - _name: any; + animationFinish(): void; play(): Animation; diff --git a/core/src/utils/animation/animation.ts b/core/src/utils/animation/animation.ts index f6124938df..0a44763301 100644 --- a/core/src/utils/animation/animation.ts +++ b/core/src/utils/animation/animation.ts @@ -882,7 +882,6 @@ export const createAnimation = () => { childAnimations, animationFinish, - _name, from, to, fromTo,