UNPKG

0x1

Version:

0x1: Lightning-fast web framework for JavaScript/TypeScript with zero overhead and maximum performance, powered by Bun

23 lines (18 loc) 573 B
declare module 'execa' { interface ExecaChildProcess<T> extends Promise<T> { stdout: string | Buffer; stderr: string | Buffer; // Additional properties like kill(), etc. } interface ExecaOptions { stdio?: 'pipe' | 'inherit' | 'ignore' | Array<any>; [key: string]: any; } interface ExecaResult { stdout: string; stderr: string; exitCode: number; } function execa(command: string, args?: string[], options?: ExecaOptions): ExecaChildProcess<ExecaResult>; export { execa, ExecaChildProcess, ExecaOptions, ExecaResult }; }