UNPKG

426 BTypeScriptView Raw
1import { Tree } from '@nrwl/devkit';
2import { Schema } from './schema';
3export declare function validateSchema(schema: Schema, configName: string): Promise<void>;
4export declare function convertToNxProjectGenerator(host: Tree, schema: Schema): Promise<void>;
5export default convertToNxProjectGenerator;
6export declare const convertToNxProjectSchematic: (generatorOptions: Schema) => (tree: any, context: any) => Promise<any>;