File tree 1 file changed +1
-6
lines changed
1 file changed +1
-6
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,6 @@ export interface DotenvParseOutput {
12
12
* See https://docs.dotenv.org
13
13
*
14
14
* @param src - contents to be parsed. example: `'DB_HOST=localhost'`
15
- * @param options - additional options. example: `{ debug: true }`
16
15
* @returns an object with keys and values based on `src`. example: `{ DB_HOST : 'localhost' }`
17
16
*/
18
17
export function parse < T extends DotenvParseOutput = DotenvParseOutput > (
@@ -100,10 +99,6 @@ export interface DotenvPopulateOptions {
100
99
override ?: boolean ;
101
100
}
102
101
103
- export interface DotenvPopulateOutput {
104
- error ?: Error ;
105
- }
106
-
107
102
export interface DotenvPopulateInput {
108
103
[ name : string ] : string ;
109
104
}
@@ -141,7 +136,7 @@ export function configDotenv(options?: DotenvConfigOptions): DotenvConfigOutput;
141
136
* @returns {void }
142
137
*
143
138
*/
144
- export function populate ( processEnv : DotenvPopulateInput , parsed : DotenvPopulateInput , options ?: DotenvConfigOptions ) : DotenvPopulateOutput ;
139
+ export function populate ( processEnv : DotenvPopulateInput , parsed : DotenvPopulateInput , options ?: DotenvConfigOptions ) : void ;
145
140
146
141
/**
147
142
* Decrypt ciphertext
You can’t perform that action at this time.
0 commit comments