commitmnt
Version:
Copy your gitlab and bitbucket commits to a new, publishable github repo
14 lines (13 loc) • 379 B
TypeScript
/**
* @internal
*
* Promise wrapper around `child_process.exec` because `util.promisify(child_process.exec)` returned
* a chainable `Promise` type that we don't need
*
* @param command the command to execute
* @returns the output of the executed command
*/
export declare function exec(command: string): Promise<{
stdout: string;
stderr: string;
}>;