https://github.com/angular/angular
Raw File
Tip revision: 93c9932d17e96dc2e401271354c68ce4462195ce authored by Andrew Scott on 08 September 2021, 16:45:42 UTC
release: cut the v13.0.0-next.5 release (#43394)
Tip revision: 93c9932
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