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) 408 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) => void; availableCommands: string[]; }>;