UNPKG

498 BTypeScriptView Raw
1/**
2 * @license
3 * Copyright Google Inc. All Rights Reserved.
4 *
5 * Use of this source code is governed by an MIT-style license that can be
6 * found in the LICENSE file at https://angular.io/license
7 */
8/**
9 * @whatItDoes Represents the version of Angular
10 *
11 * @stable
12 */
13export declare class Version {
14 full: string;
15 constructor(full: string);
16 readonly major: string;
17 readonly minor: string;
18 readonly patch: string;
19}
20/**
21 * @stable
22 */
23export declare const VERSION: Version;