@nrwl/workspace
Version:
11 lines (10 loc) • 308 B
TypeScript
import { Rule } from '@angular-devkit/schematics';
/**
* Checks whether the project exists in the workspace.
* Throws an Error if the project is not found.
*
* @param schema The options provided to the schematic
*/
export declare function checkProjectExists(schema: {
projectName: string;
}): Rule;