https://github.com/angular/angular
Raw File
Tip revision: 61b1425aedbcf861871d5618b06efc029f123612 authored by Andrew Kushnir on 21 October 2020, 17:42:17 UTC
release: cut the v10.2.0 release
Tip revision: 61b1425
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 common package.
 */

import {Version} from '@angular/core';

/**
 * @publicApi
 */
export const VERSION = new Version('0.0.0-PLACEHOLDER');
back to top