UNPKG

@aminya/dotenv-vault

Version:

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

23 lines (22 loc) 463 B
interface VersionsServiceAttrs { cmd: any; environment: any; dotenvMe: any; yes: any; } declare class VersionsService { cmd: any; environment: any; dotenvMe: any; yes: any; log: any; abort: any; login: any; constructor(attrs?: VersionsServiceAttrs); run(): Promise<void>; versions(): Promise<void>; get url(): string; get smartEnvironment(): any; get meUid(): any; } export { VersionsService };