From 0ce8f6e62d02d24fb98fc5c865017a71045941ec Mon Sep 17 00:00:00 2001 From: dario-piotrowicz Date: Sat, 17 Jul 2021 20:35:35 +0100 Subject: [PATCH] refactor(animations): remove unused animation trigger imports (#42763) in the animation_trigger.ts file there are unused imports remove them to clean up the file PR Close #42763 --- packages/animations/browser/src/dsl/animation_trigger.ts | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/packages/animations/browser/src/dsl/animation_trigger.ts b/packages/animations/browser/src/dsl/animation_trigger.ts index d7dfff8f67..7dc0bb6c50 100644 --- a/packages/animations/browser/src/dsl/animation_trigger.ts +++ b/packages/animations/browser/src/dsl/animation_trigger.ts @@ -6,10 +6,7 @@ * found in the LICENSE file at https://angular.io/license */ import {AnimationMetadataType, ɵStyleData} from '@angular/animations'; - -import {copyStyles, interpolateParams} from '../util'; - -import {SequenceAst, StyleAst, TransitionAst, TriggerAst} from './animation_ast'; +import {SequenceAst, TransitionAst, TriggerAst} from './animation_ast'; import {AnimationStateStyles, AnimationTransitionFactory} from './animation_transition_factory'; import {AnimationStyleNormalizer} from './style_normalization/animation_style_normalizer';