https://github.com/angular/angular
Raw File
Tip revision: 6459b253e827a145e51a74289cc563d488956ba0 authored by Jessica Janiuk on 02 March 2022, 18:51:46 UTC
release: cut the v14.0.0-next.5 release (#45243)
Tip revision: 6459b25
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