UNPKG

nx

Version:

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

26 lines (25 loc) 446 B
import { Argv, CommandModule } from 'yargs'; export declare const yargsGraphCommand: CommandModule; export declare function withGraphOptions(yargs: Argv): Argv<{ file: string; } & { print: boolean; } & { view: string; } & { targets: string; } & { focus: string; } & { exclude: string; } & { groupByFolder: boolean; } & { host: string; } & { port: number; } & { watch: boolean; } & { open: boolean; }>;