2021-09-18 16:01:08 +00:00
|
|
|
/**
|
|
|
|
|
* @license
|
|
|
|
|
* Copyright Google LLC All Rights Reserved.
|
|
|
|
|
*
|
|
|
|
|
* Use of this source code is governed by an MIT-style license that can be
|
2024-09-20 15:23:15 +00:00
|
|
|
* found in the LICENSE file at https://angular.dev/license
|
2021-09-18 16:01:08 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @fileoverview The API from compiler-cli that the `@angular/core`
|
|
|
|
|
* package requires for migration schematics.
|
|
|
|
|
*/
|
|
|
|
|
|
2025-10-27 18:21:20 +00:00
|
|
|
export {
|
|
|
|
|
createForwardRefResolver,
|
|
|
|
|
ExternalTemplateDeclaration,
|
|
|
|
|
extractDecoratorQueryMetadata,
|
|
|
|
|
extractTemplate,
|
|
|
|
|
findAngularDecorator,
|
|
|
|
|
getAngularDecorators,
|
|
|
|
|
InlineTemplateDeclaration,
|
|
|
|
|
queryDecoratorNames,
|
|
|
|
|
QueryFunctionName,
|
|
|
|
|
ResourceLoader,
|
|
|
|
|
unwrapExpression,
|
|
|
|
|
parseDecoratorInputTransformFunction,
|
|
|
|
|
} from '../src/ngtsc/annotations';
|
|
|
|
|
export {
|
|
|
|
|
AbsoluteFsPath,
|
|
|
|
|
FileSystem,
|
|
|
|
|
getFileSystem,
|
|
|
|
|
isLocalRelativePath,
|
|
|
|
|
NodeJSFileSystem,
|
|
|
|
|
} from '../src/ngtsc/file_system';
|
|
|
|
|
export {CompilationMode} from '../src/ngtsc/transform';
|
|
|
|
|
|
|
|
|
|
export {
|
|
|
|
|
DiagnosticCategoryLabel,
|
|
|
|
|
NgCompiler,
|
|
|
|
|
NgCompilerOptions,
|
|
|
|
|
UnifiedModulesHost,
|
|
|
|
|
} from '../src/ngtsc/core';
|
|
|
|
|
export {Reference, ReferenceEmitter, ReferenceEmitKind} from '../src/ngtsc/imports';
|
|
|
|
|
export {
|
|
|
|
|
DecoratorInputTransform,
|
|
|
|
|
DtsMetadataReader,
|
|
|
|
|
MetadataReader,
|
|
|
|
|
DirectiveMeta,
|
|
|
|
|
InputMapping,
|
|
|
|
|
} from '../src/ngtsc/metadata';
|
2021-09-18 16:01:08 +00:00
|
|
|
export {
|
|
|
|
|
DynamicValue,
|
|
|
|
|
PartialEvaluator,
|
|
|
|
|
ResolvedValue,
|
|
|
|
|
ResolvedValueMap,
|
|
|
|
|
StaticInterpreter,
|
|
|
|
|
} from '../src/ngtsc/partial_evaluator';
|
2025-10-27 18:21:20 +00:00
|
|
|
export {
|
|
|
|
|
ClassDeclaration,
|
|
|
|
|
Decorator,
|
|
|
|
|
ReflectionHost,
|
|
|
|
|
reflectObjectLiteral,
|
|
|
|
|
TypeScriptReflectionHost,
|
|
|
|
|
} from '../src/ngtsc/reflection';
|
2023-01-13 19:08:45 +00:00
|
|
|
export {
|
|
|
|
|
PotentialImport,
|
|
|
|
|
PotentialImportKind,
|
|
|
|
|
PotentialImportMode,
|
2025-10-27 18:21:20 +00:00
|
|
|
SymbolKind,
|
2023-01-13 19:08:45 +00:00
|
|
|
TemplateTypeChecker,
|
|
|
|
|
} from '../src/ngtsc/typecheck/api';
|
2025-10-27 18:21:20 +00:00
|
|
|
|
|
|
|
|
export {getRootDirs} from '../src/ngtsc/util/src/typescript';
|
|
|
|
|
|
|
|
|
|
export {FatalDiagnosticError} from '../src/ngtsc/diagnostics';
|
|
|
|
|
export {isShim} from '../src/ngtsc/shims';
|
2024-07-23 12:45:15 +00:00
|
|
|
export {ImportManager} from '../src/ngtsc/translator';
|