mirror of
https://github.com/angular/angular-cli.git
synced 2025-05-24 08:06:17 +08:00
15 lines
383 B
TypeScript
15 lines
383 B
TypeScript
// In order to keep refactoring low, simply export from ast-tools.
|
|
// TODO: move all dependencies of this file to ast-tools directly.
|
|
export {
|
|
getSource,
|
|
getSourceNodes,
|
|
findNodes,
|
|
insertAfterLastOccurrence,
|
|
getContentOfKeyLiteral,
|
|
getDecoratorMetadata,
|
|
addDeclarationToModule,
|
|
addProviderToModule,
|
|
addImportToModule,
|
|
addExportToModule
|
|
} from '../lib/ast-tools';
|