mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
The `NoopAnimationDriver` as static property of `AnimationDriver` prevents it from being removed by tree shaking. This commit deprecates it and exposes the `NoopAnimationDriver` on the public API to replace its usage. DEPRECATED: The `AnimationDriver.NOOP` symbol is deprecated, use `NoopAnimationDriver` instead. PR Close #51843
15 lines
424 B
TypeScript
15 lines
424 B
TypeScript
/**
|
|
* @license
|
|
* Copyright Google LLC All Rights Reserved.
|
|
*
|
|
* Use of this source code is governed by an MIT-style license that can be
|
|
* found in the LICENSE file at https://angular.io/license
|
|
*/
|
|
|
|
/**
|
|
* @module
|
|
* @description
|
|
* Entry point for all animation APIs of the animation browser package.
|
|
*/
|
|
export {AnimationDriver, NoopAnimationDriver} from './render/animation_driver';
|
|
export * from './private_export';
|