@aminya/dotenv-vault
Version:
A secrets manager for .env files – from the same people that pioneered dotenv.
26 lines (25 loc) • 596 B
TypeScript
interface LoginServiceAttrs {
cmd: any;
dotenvMe: any;
yes: any;
}
declare class LoginService {
cmd: any;
dotenvMe: any;
yes: any;
log: any;
requestUid: any;
controller: any;
abort: any;
checkCount: any;
constructor(attrs?: LoginServiceAttrs);
run(): Promise<void>;
login(tip?: boolean): Promise<void>;
check(tip?: boolean): Promise<void>;
meFileContent(value: string): string;
startingMessage(): string;
doneMessage(meUid: string): string;
get loginUrl(): string;
get checkUrl(): string;
}
export { LoginService };