UNPKG

606 BTypeScriptView Raw
1import { Tree } from '@angular-devkit/schematics';
2export declare function getWorkspacePath(host: Tree): string;
3export declare function getNpmScope(host: Tree): string;
4export declare function parseTarget(targetString: string): {
5 project: string;
6 target: string;
7 config: string;
8};
9export declare function editTarget(targetString: string, callback: any): string;
10export declare function serializeTarget({ project, target, config }: {
11 project: any;
12 target: any;
13 config: any;
14}): string;
15export declare function replaceAppNameWithPath(node: any, appName: string, root: string): any;