UNPKG

@aminya/dotenv-vault

Version:

A secrets manager for .env files – from the same people that pioneered dotenv.

22 lines (21 loc) 410 B
interface KeysServiceAttrs { cmd: any; environment: any; dotenvMe: any; yes: any; } declare class KeysService { cmd: any; environment: any; dotenvMe: any; yes: any; log: any; abort: any; login: any; constructor(attrs?: KeysServiceAttrs); run(): Promise<void>; keys(): Promise<void>; get url(): string; get meUid(): any; } export { KeysService };