UNPKG

nx

Version:

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

11 lines 758 B
import { Tree } from '../../generators/tree'; import { CLIErrorMessageConfig, CLINoteMessageConfig } from '../../utils/output'; import { NormalizedSetupAiAgentsGeneratorSchema, SetupAiAgentsGeneratorSchema } from './schema'; export type ModificationResults = { messages: CLINoteMessageConfig[]; errors: CLIErrorMessageConfig[]; }; export declare function setupAiAgentsGenerator(tree: Tree, options: SetupAiAgentsGeneratorSchema, inner?: boolean): Promise<(check?: boolean) => Promise<ModificationResults>>; export declare function setupAiAgentsGeneratorImpl(tree: Tree, options: NormalizedSetupAiAgentsGeneratorSchema): Promise<() => Promise<ModificationResults>>; export default setupAiAgentsGenerator; //# sourceMappingURL=set-up-ai-agents.d.ts.map