test: add optional options parameter to ExecFileFn type

This commit is contained in:
Jörg Krzeslak 2025-07-24 18:20:46 +02:00
parent 6452d0b357
commit c0f0dc5192

View file

@ -1,6 +1,7 @@
export type ExecFileFn = ( export type ExecFileFn = (
cmd: string, cmd: string,
args: string[], args: string[],
options: import("child_process").ExecFileOptions | undefined,
callback: (err: Error | null, stdout: string, stderr: string) => void, callback: (err: Error | null, stdout: string, stderr: string) => void,
) => void; ) => void;