diff --git a/src/converters/types.ts b/src/converters/types.ts index 5d7dc9f..5227b37 100644 --- a/src/converters/types.ts +++ b/src/converters/types.ts @@ -1,6 +1,7 @@ export type ExecFileFn = ( cmd: string, args: string[], + options: import("child_process").ExecFileOptions | undefined, callback: (err: Error | null, stdout: string, stderr: string) => void, ) => void;