UNPKG

nx

Version:

The core Nx plugin contains the core functionality of Nx like the project graph, nx commands and task orchestration.

22 lines (21 loc) 742 B
import { FileChange } from '../../generators/tree'; import { Options, Schema } from '../../utils/params'; export interface GenerateOptions { collectionName: string; generatorName: string; generatorOptions: Options; help: boolean; dryRun: boolean; interactive: boolean; defaults: boolean; quiet: boolean; } export declare function printChanges(fileChanges: FileChange[]): void; export declare function parseGeneratorString(value: string): { collection?: string; generator: string; }; export declare function printGenHelp(opts: GenerateOptions, schema: Schema, normalizedGeneratorName: string, aliases: string[]): void; export declare function generate(args: { [k: string]: any; }): Promise<number>;