refactor(animations): change NoOp -> Noop (#14690)

This commit is contained in:
Matias Niemelä
2017-02-24 00:32:19 -08:00
committed by Igor Minar
parent 1f3198cb50
commit 32c2fd5c9f
11 changed files with 22 additions and 23 deletions

View File

@ -109,7 +109,7 @@ export declare function group(steps: AnimationMetadata[]): AnimationGroupMetadat
export declare function keyframes(steps: AnimationStyleMetadata[]): AnimationKeyframesSequenceMetadata;
/** @experimental */
export declare class NoOpAnimationPlayer implements AnimationPlayer {
export declare class NoopAnimationPlayer implements AnimationPlayer {
parentPlayer: AnimationPlayer;
constructor();
destroy(): void;

View File

@ -7,7 +7,7 @@ export declare class MockAnimationDriver implements AnimationDriver {
}
/** @experimental */
export declare class MockAnimationPlayer extends NoOpAnimationPlayer {
export declare class MockAnimationPlayer extends NoopAnimationPlayer {
delay: number;
duration: number;
easing: string;