UNPKG

env-smart

Version:

Zero-dependency library for loading .env files. Supports default values and type definitions.

14 lines (13 loc) 375 B
import { config } from './config'; import { load } from './load'; import { parse, parseFile } from './parse'; import { type } from './type'; export { load, type, parse, parseFile, config }; declare const _default: { load: typeof load; type: typeof type; parse: typeof parse; parseFile: typeof parseFile; config: typeof config; }; export default _default;