UNPKG

dotencr

Version:

Encrypt and decrypt individual lines inside a .env file. Supports multiple encryption keys. Keys and dotenv files can be read text file or read from the environment.

18 lines (17 loc) 438 B
export declare const parseArgs: (argv: string[]) => { commandLineParserError: boolean; file: string[]; output: string | undefined; jsonOutput: string; backupFolder: string; backup: boolean; useRelativePaths: boolean; _: string[]; $0: string; }; export declare type ParsedArgsDataType = ReturnType<typeof parseArgs> & { keyvalue?: string; key?: string; name?: string; value?: string; };