mirror of
https://github.com/angular/angular.git
synced 2026-09-14 13:54:52 +08:00
b1dffa4abe
Migrate formatting to prettier for platform-* from clang-format PR Close #55423
24 lines
556 B
TypeScript
24 lines
556 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 {ANIMATION_MODULE_TYPE} from '@angular/core';
|
|
export {
|
|
BrowserAnimationsModule,
|
|
BrowserAnimationsModuleConfig,
|
|
NoopAnimationsModule,
|
|
provideAnimations,
|
|
provideNoopAnimations,
|
|
} from './module';
|
|
|
|
export * from './private_export';
|