@aminya/dotenv-vault
Version:
A secrets manager for .env files – from the same people that pioneered dotenv.
22 lines (21 loc) • 435 B
TypeScript
interface RotatekeyServiceAttrs {
cmd: any;
environment: any;
dotenvMe: any;
yes: any;
}
declare class RotatekeyService {
cmd: any;
environment: any;
dotenvMe: any;
yes: any;
log: any;
abort: any;
login: any;
constructor(attrs?: RotatekeyServiceAttrs);
run(): Promise<void>;
rotatekey(): Promise<void>;
get url(): string;
get meUid(): any;
}
export { RotatekeyService };