UNPKG

nx

Version:

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

11 lines (10 loc) 343 B
import { CommandModule } from 'yargs'; declare const SHELL_CHOICES: readonly ['bash', 'zsh', 'fish', 'powershell']; type Shell = (typeof SHELL_CHOICES)[number]; interface CompletionArgs { shell?: Shell; force?: boolean; stdout?: boolean; } export declare const yargsCompletionCommand: CommandModule<{}, CompletionArgs>; export {};