index.d.ts 739 B

123456789101112131415
  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. export { AstHost, Range } from './src/ast/ast_host';
  9. export { assert } from './src/ast/utils';
  10. export { FatalLinkerError, isFatalLinkerError } from './src/fatal_linker_error';
  11. export { DeclarationScope } from './src/file_linker/declaration_scope';
  12. export { FileLinker } from './src/file_linker/file_linker';
  13. export { LinkerEnvironment } from './src/file_linker/linker_environment';
  14. export { DEFAULT_LINKER_OPTIONS, LinkerOptions } from './src/file_linker/linker_options';
  15. export { needsLinking } from './src/file_linker/needs_linking';