2017-01-26 14:16:51 -05:00
|
|
|
/**
|
|
|
|
* @license
|
|
|
|
* Copyright Google Inc. 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.
|
|
|
|
*/
|
|
|
|
|
2017-02-28 20:49:37 -05:00
|
|
|
/**
|
2018-04-05 17:34:11 -04:00
|
|
|
* @description
|
2018-04-05 17:31:44 -04:00
|
|
|
*
|
2018-04-05 17:34:11 -04:00
|
|
|
* Represents the version of angular/animations
|
2017-02-28 20:49:37 -05:00
|
|
|
*/
|
|
|
|
export class Version {
|
2017-09-11 15:39:44 -04:00
|
|
|
public readonly major: string;
|
|
|
|
public readonly minor: string;
|
|
|
|
public readonly patch: string;
|
2017-02-28 20:49:37 -05:00
|
|
|
|
2017-09-11 15:39:44 -04:00
|
|
|
constructor(public full: string) {
|
|
|
|
const splits = full.split('.');
|
|
|
|
this.major = splits[0];
|
|
|
|
this.minor = splits[1];
|
|
|
|
this.patch = splits.slice(2).join('.');
|
|
|
|
}
|
2017-02-28 20:49:37 -05:00
|
|
|
}
|
|
|
|
|
2017-01-26 14:16:51 -05:00
|
|
|
export const VERSION = new Version('0.0.0-PLACEHOLDER');
|