https://github.com/angular/angular
Raw File
Tip revision: ebd94ef41b5fdd1acc89ae21d6476122aa10521e authored by Andrew Scott on 13 January 2021, 21:26:54 UTC
release: cut the v11.1.0-rc.0 release (#40420)
Tip revision: ebd94ef
version.ts
/**
 * @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.
 */

/**
 * @description
 *
 * Represents the version of angular/animations
 */
export class Version {
  public readonly major: string;
  public readonly minor: string;
  public readonly patch: string;

  constructor(public full: string) {
    const splits = full.split('.');
    this.major = splits[0];
    this.minor = splits[1];
    this.patch = splits.slice(2).join('.');
  }
}

export const VERSION = new Version('0.0.0-PLACEHOLDER');
back to top