https://github.com/angular/angular
Raw File
Tip revision: cbba7152fd2a533277b88aca98a50339d098d9f7 authored by Jessica Janiuk on 17 March 2021, 17:43:01 UTC
release: cut the v11.2.6 release (#41247)
Tip revision: cbba715
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 common package.
 */

import {Version} from './util';

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