source: trip-planner-front/node_modules/@angular/cdk/schematics/update-tool/target-version.d.ts@ fa375fe

Last change on this file since fa375fe was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 688 bytes
Line 
1/**
2 * @license
3 * Copyright Google LLC 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/** Possible versions that can be automatically migrated by `ng update`. */
9export declare enum TargetVersion {
10 V6 = "version 6",
11 V7 = "version 7",
12 V8 = "version 8",
13 V9 = "version 9",
14 V10 = "version 10",
15 V11 = "version 11",
16 V12 = "version 12",
17 V13 = "version 13"
18}
19/**
20 * Returns all versions that are supported by "ng update". The versions are determined
21 * based on the "TargetVersion" enum.
22 */
23export declare function getAllVersionNames(): string[];
Note: See TracBrowser for help on using the repository browser.