-
-
Notifications
You must be signed in to change notification settings - Fork 900
Closed
Description
The populate
function has no return statement, so it cannot return an object of the form that DotenvPopulateOutput
describes.
For reference:
export interface DotenvPopulateOutput {
error?: Error;
}
/**
* [...]
* @returns {void}
*/
export function populate(/* ... */): DotenvPopulateOutput;
Should be:
export function populate(/* ... */): void;
Metadata
Metadata
Assignees
Labels
No labels