UNPKG

suf-node

Version:
9 lines (8 loc) 224 B
export interface ExecOptions { linkStdout?: boolean; } export interface ExecOut { stdout: string; stderr: string; } export declare function Exec(command: string, options?: ExecOptions): Promise<ExecOut>;