/** * Wraps up running a command into a single promise, * returning the stdout as a string if the command succeeds * and throwing if it does not. * * @param cmd the command as a string to pass in */ export default function execPromise(cmd: string, args?: (string | undefined | false)[]): Promise;