nx
Version:
11 lines (10 loc) • 408 B
TypeScript
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[];
}>;