https://github.com/angular/angular
Raw File
Tip revision: b31a9a75ad71b5aae098b3cf5588a73b226a9faf authored by Andrew Kushnir on 20 October 2021, 16:57:26 UTC
release: cut the v13.0.0-rc.1 release (#43911)
Tip revision: b31a9a7
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