UNPKG

308 BTypeScriptView Raw
1import { Rule } from '@angular-devkit/schematics';
2/**
3 * Checks whether the project exists in the workspace.
4 * Throws an Error if the project is not found.
5 *
6 * @param schema The options provided to the schematic
7 */
8export declare function checkProjectExists(schema: {
9 projectName: string;
10}): Rule;