From c0f0dc5192cf822190544e9aa6576fad61abbd44 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Krzeslak?= Date: Thu, 24 Jul 2025 18:20:46 +0200 Subject: [PATCH] test: add optional options parameter to ExecFileFn type --- src/converters/types.ts | 1 + 1 file changed, 1 insertion(+) 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;