We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5c7d7f5 commit 50163a1Copy full SHA for 50163a1
1 file changed
lib/main.d.ts
@@ -55,6 +55,15 @@ export interface DotenvConfigOptions {
55
* example: `require('dotenv').config({ override: true })`
56
*/
57
override?: boolean;
58
+
59
+ /**
60
+ * Default: `process.env`
61
+ *
62
+ * Override any environment variables that have already been set on your machine with values from your .env file.
63
64
+ * example: `const processEnv = {}; require('dotenv').config({ processEnv: processEnv })`
65
+ */
66
+ processEnv?: DotenvPopulateInput;
67
}
68
69
export interface DotenvConfigOutput {
0 commit comments