ng-ast-utils.d.ts 408 B

12345
  1. import { Tree } from '@angular-devkit/schematics';
  2. import * as ts from '../third_party/github.com/Microsoft/TypeScript/lib/typescript';
  3. export declare function findBootstrapModuleCall(host: Tree, mainPath: string): ts.CallExpression | null;
  4. export declare function findBootstrapModulePath(host: Tree, mainPath: string): string;
  5. export declare function getAppModulePath(host: Tree, mainPath: string): string;