@aminya/dotenv-vault
Version:
A secrets manager for .env files – from the same people that pioneered dotenv.
25 lines (24 loc) • 542 B
TypeScript
interface NewServiceAttrs {
cmd: any;
dotenvVault: any;
yes: any;
}
declare class NewService {
cmd: any;
dotenvVault: any;
yes: any;
log: any;
requestUid: any;
controller: any;
abort: any;
checkCount: any;
constructor(attrs?: NewServiceAttrs);
run(): Promise<void>;
check(): Promise<void>;
vaultFileContent(value: string): string;
get url(): string;
get checkUrl(): string;
get urlWithProjectName(): string;
get pushOrPullCommand(): string;
}
export { NewService };