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 = (
cmd: string,
args: string[],
options: import("child_process").ExecFileOptions | undefined,
callback: (err: Error | null, stdout: string, stderr: string) => void,
) => void;