mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
Animations package has its own implementation of the `Version` class, when other packages use an implementation from `@angular/core`. This commit aligns Animations package with other packages and makes use of the `Version` class from `@angular/core`. PR Close #44375
16 lines
396 B
TypeScript
16 lines
396 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 public APIs of the animation package.
|
|
*/
|
|
import {Version} from '@angular/core';
|
|
|
|
export const VERSION = new Version('0.0.0-PLACEHOLDER');
|