UNPKG

nx

Version:

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

12 lines (9 loc) 283 B
import type { Agent } from '../utils'; export type SetupAiAgentsGeneratorSchema = { directory: string; writeNxCloudRules?: boolean; packageVersion?: string; agents?: Agent[]; }; export type NormalizedSetupAiAgentsGeneratorSchema = Required<SetupAiAgentsGeneratorSchema>;