https://github.com/angular/angular
Raw File
Tip revision: 499f09ac56f87cc70853aade694db5a69565cf3e authored by Emma Twersky on 06 November 2023, 18:33:21 UTC
docs: add angular.dev banner (#52535)
Tip revision: 499f09a
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