UNPKG

nx

Version:

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

11 lines 460 B
import { CloudTaskRunnerOptions } from '../nx-cloud-tasks-runner-shell'; export declare class UnknownCommandError extends Error { command: string; availableCommands: string[]; constructor(command: string, availableCommands: string[]); } export declare function getCloudClient(options: CloudTaskRunnerOptions): Promise<{ invoke: (command: string, exit?: boolean) => void; availableCommands: string[]; }>; //# sourceMappingURL=client.d.ts.map