UNPKG

steadybit

Version:

Command-line interface to interact with the Steadybit API

11 lines (10 loc) 330 B
export interface ShellCommandResult { stdout: string; stderr: string; } export interface ShellCommandOptions { trimOutput?: boolean; cwd?: string; timeout?: number; } export declare function executeShellCommand(command: string, { trimOutput, cwd, timeout }?: ShellCommandOptions): Promise<ShellCommandResult>;