UNPKG

513 BTypeScriptView Raw
1import { Tree } from '@nrwl/devkit';
2import { Schema } from './schema';
3export declare const SCHEMA_OPTIONS_ARE_MUTUALLY_EXCLUSIVE = "--project and --all are mutually exclusive";
4export declare function validateSchema(schema: Schema): Promise<void>;
5export declare function convertToNxProjectGenerator(host: Tree, schema: Schema): Promise<void>;
6export default convertToNxProjectGenerator;
7export declare const convertToNxProjectSchematic: (generatorOptions: Schema) => (tree: any, context: any) => Promise<any>;