forever-monitor.Options.env should use NodeJS.ProcessEnv

This commit is contained in:
Will Boyce 2018-02-22 11:25:08 +00:00
parent 425ca63a9e
commit f3ec46fbc6
No known key found for this signature in database
GPG Key ID: 4E27760A85903481

View File

@ -1,6 +1,7 @@
// Type definitions for forever-monitor 1.7
// Project: https://github.com/nodejitsu/forever-monitor#readme
// Definitions by: Shun Takahashi <https://github.com/shuntksh>
// Will Boyce <https://github.com/wrboyce>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
/// <reference types="node" />
@ -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;