diginext-utils
Version:
README.md
9 lines • 329 B
TypeScript
/**
* Reads an .env file and converts it into a JavaScript object.
*
* @param {string} path - The path to the .env file.
* @return {Object} - An object with keys and values based on the .env file.
*/
export default function parseEnvFile(path: string): any;
export { parseEnvFile };
//# sourceMappingURL=parseEnvFile.d.ts.map