target-version.d.ts 529 B

12345678910111213141516
  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.dev/license
  7. */
  8. /** Possible versions that can be automatically migrated by `ng update`. */
  9. export declare enum TargetVersion {
  10. V19 = "version 19"
  11. }
  12. /**
  13. * Returns all versions that are supported by "ng update". The versions are determined
  14. * based on the "TargetVersion" enum.
  15. */
  16. export declare function getAllVersionNames(): string[];