From f3ec46fbc607386ddd72a282bcc69e01cdda5786 Mon Sep 17 00:00:00 2001 From: Will Boyce Date: Thu, 22 Feb 2018 11:25:08 +0000 Subject: [PATCH] forever-monitor.Options.env should use NodeJS.ProcessEnv --- types/forever-monitor/index.d.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/types/forever-monitor/index.d.ts b/types/forever-monitor/index.d.ts index caa921fa1a..c9de58e7cc 100644 --- a/types/forever-monitor/index.d.ts +++ b/types/forever-monitor/index.d.ts @@ -1,6 +1,7 @@ // Type definitions for forever-monitor 1.7 // Project: https://github.com/nodejitsu/forever-monitor#readme // Definitions by: Shun Takahashi +// Will Boyce // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped /// @@ -27,7 +28,7 @@ export interface Options { watchIgnorePatters?: string[]; watchDirectory?: string; spawnWith?: SpawnWith; - env?: { [envKey: string]: string; }; + env?: NodeJS.ProcessEnv; cwd?: string; logFile?: string; outFile?: string;