UNPKG

@hairy/lnv

Version:

Loading environment variables in Next.js and other frameworks can be quite cumbersome, and using dotenv or vault at runtime is also inconvenient. That's why my created this tool

15 lines (12 loc) 306 B
import { Argv } from 'yargs'; interface ArgvParsed { _?: string[]; $0: string; value?: string[]; entry?: string[]; write?: boolean; depth?: boolean; run?: string; } declare function registerLnvCommand(cli: Argv): Promise<void>; export { type ArgvParsed, registerLnvCommand };