UNPKG

@aminya/dotenv-vault

Version:

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

15 lines (14 loc) 277 B
interface StatusServiceAttrs { cmd: any; yes: any; } declare class StatusService { cmd: any; yes: any; log: any; abort: any; constructor(attrs?: StatusServiceAttrs); run(): Promise<void>; get statusUrl(): string; } export { StatusService };