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