Add env to options in index.d.ts

Fixes #117
This commit is contained in:
Filip Budiša 2019-12-18 18:41:11 +01:00
parent e176896428
commit 91df887427

2
index.d.ts vendored
View file

@ -1 +1 @@
export function exec(cmd: string, options: { name?: string, icns?: string }, callback: (error: string, stdout: string, stderr: string) => void): void;
export function exec(cmd: string, options: { name?: string, icns?: string, env?: { [key: string]: string } }, callback: (error: string, stdout: string, stderr: string) => void): void;