gluegun
Version:
A delightful toolkit for building Node-powered CLIs.
12 lines (11 loc) • 470 B
TypeScript
import { GluegunToolbox } from '../domain/toolbox';
import { Runtime } from './runtime';
import { Options } from '../domain/options';
/**
* Runs a command.
*
* @param rawCommand Command string or array of strings.
* @param extraOptions Additional options use to execute a command.
* @return The Toolbox object indicating what happened.
*/
export declare function run(this: Runtime, rawCommand?: string | string[], extraOptions?: Options): Promise<GluegunToolbox>;