Node Helper functions.
function readConsole(): Promise<string>;function getYNAnswer(defaultAnswer?: boolean): Promise<boolean>;interface ExecOptions {
linkStdout?: boolean;
}interface ExecOut {
stdout: string;
stderr: string;
}function Exec(command: string, options?: ExecOptions): Promise<ExecOut>;function Walk(dir: string): Promise<string[]>;function Exits(path: string): Promise<boolean>;Generated with suf-cli
Copyright (c) 2020 Leonard Grosoli Licensed under the MIT license.