UNPKG

nx

Version:

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

9 lines (8 loc) 288 B
import { CommandModule } from 'yargs'; export type ResetCommandOptions = { onlyCache?: boolean; onlyDaemon?: boolean; onlyWorkspaceData?: boolean; onlyCloud?: boolean; }; export declare const yargsResetCommand: CommandModule<Record<string, unknown>, ResetCommandOptions>;