test: add optional options parameter to ExecFileFn type
This commit is contained in:
parent
6452d0b357
commit
c0f0dc5192
1 changed files with 1 additions and 0 deletions
|
|
@ -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;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue