https://github.com/angular/angular
Raw File
Tip revision: 43525adab18a45e2ccfa6ab70da2d06f2cc381af authored by Andrew Scott on 19 May 2021, 17:41:15 UTC
release: cut the v12.0.1 release (#42175)
Tip revision: 43525ad
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 compiler package.
 */

import {Version} from './util';

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