-
-
Notifications
You must be signed in to change notification settings - Fork 370
Commit
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,10 @@ | ||
/// <reference types="node" /> | ||
/** Wrapper around the GitHub toolkit exec command which returns the output. | ||
* Also allows you to easily toggle the current working directory. | ||
* | ||
* @param {string} cmd - The command to execute. | ||
* @param {string} cwd - The current working directory. | ||
* @param {boolean} silent - Determines if the in/out should be silenced or not. | ||
*/ | ||
export declare function execute(cmd: string, cwd: string, silent: boolean): Promise<any>; | ||
export declare function stdout(data: any): string | void; | ||
export declare function execute(cmd: string, cwd: string, silent: boolean): Promise<string>; | ||
export declare function stdout(data: Buffer | string): void; |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.