From 91df887427a66617f41cb6f6f588dcb46b7f8cd4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Filip=20Budi=C5=A1a?= Date: Wed, 18 Dec 2019 18:41:11 +0100 Subject: [PATCH] Add env to options in index.d.ts Fixes #117 --- index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.d.ts b/index.d.ts index 52485c5..1d99892 100644 --- a/index.d.ts +++ b/index.d.ts @@ -1 +1 @@ -export function exec(cmd: string, options: { name?: string, icns?: string }, callback: (error: string, stdout: string, stderr: string) => void): void; \ No newline at end of file +export function exec(cmd: string, options: { name?: string, icns?: string, env?: { [key: string]: string } }, callback: (error: string, stdout: string, stderr: string) => void): void;