UNPKG

@aminya/dotenv-vault

Version:

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

17 lines (16 loc) 332 B
interface WhoamiServiceAttrs { cmd: any; dotenvMe: any; } declare class WhoamiService { cmd: any; dotenvMe: any; log: any; abort: any; constructor(attrs?: WhoamiServiceAttrs); run(): Promise<void>; whoami(): Promise<void>; get url(): string; get meUid(): any; } export { WhoamiService };