https://github.com/angular/angular
Raw File
Tip revision: e41245b34469d5a5353fcb257cb034433058b8d4 authored by Dylan Hunn on 13 July 2023, 17:46:24 UTC
release: cut the v16.1.5 release
Tip revision: e41245b
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