UNPKG

nx

Version:

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

13 lines 426 B
export interface Example { command: string; description: string; } export interface CliDocsCommandMetadata { supportedVersionRange?: string; } /** * Docs-only metadata keyed by the full command name as rendered in the CLI docs. */ export declare const cliDocsCommandMetadata: Record<string, CliDocsCommandMetadata>; export declare const examples: Record<string, Example[]>; //# sourceMappingURL=examples.d.ts.map