https://github.com/angular/angular
Raw File
Tip revision: 8e1946ed529e290b8bbb787415d86f39e9db29c4 authored by Matthieu Riegler on 21 February 2023, 23:03:39 UTC
docs: escape script tag to prevent rendering problems (#49152)
Tip revision: 8e1946e
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