IOweb/node_modules/@iconify/tools/lib/misc/exec.d.cts
2026-07-03 15:07:38 -05:00

12 lines
263 B
TypeScript

import { ExecOptions } from 'child_process';
interface ExecResult {
stdout: string;
stderr: string;
}
/**
* Exec as Promise
*/
declare function execAsync(cmd: string, options?: ExecOptions): Promise<ExecResult>;
export { type ExecResult, execAsync };