@ycmd/spawn
Version:
LSK.js CLI Creds is the easiest way to manage GitHub / Gitlab secrets and credentials
11 lines (8 loc) • 335 B
text/typescript
import { SpawnOptionsWithoutStdio } from 'child_process';
interface SpawnOptions extends SpawnOptionsWithoutStdio {
silence?: boolean | 'all';
cwd?: string;
log?: any;
}
declare function spawn(command: string, args?: string[], options?: SpawnOptions): Promise<any>;
export { type SpawnOptions, spawn as default, spawn };