migrations.d.ts 910 B

123456789101112131415161718
  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. /**
  9. * @fileoverview The API from compiler-cli that the `@angular/core`
  10. * package requires for migration schematics.
  11. */
  12. export { createForwardRefResolver } from '../src/ngtsc/annotations';
  13. export { AbsoluteFsPath } from '../src/ngtsc/file_system';
  14. export { Reference } from '../src/ngtsc/imports';
  15. export { DynamicValue, PartialEvaluator, ResolvedValue, ResolvedValueMap, StaticInterpreter, } from '../src/ngtsc/partial_evaluator';
  16. export { reflectObjectLiteral, TypeScriptReflectionHost } from '../src/ngtsc/reflection';
  17. export { PotentialImport, PotentialImportKind, PotentialImportMode, TemplateTypeChecker, } from '../src/ngtsc/typecheck/api';
  18. export { ImportManager } from '../src/ngtsc/translator';