UNPKG

env2ts

Version:

Dead simple env file parsing for TypeScript

10 lines (9 loc) 287 B
export declare const isDotenvInstalled: () => boolean; declare enum Manager { npm = "npm", yarn = "yarn", none = "none" } export declare const installDotenv: (manager: Manager) => Promise<string>; export declare const parseEnvFile: (contents: string) => string[]; export {};