UNPKG

@aminya/dotenv-vault

Version:

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

21 lines (20 loc) 451 B
interface LogoutServiceAttrs { cmd: any; yes: any; } declare class LogoutService { cmd: any; yes: any; log: any; requestUid: any; controller: any; abort: any; checkCount: any; constructor(attrs?: LogoutServiceAttrs); run(): Promise<void>; logout(tip?: boolean): Promise<void>; check(tip?: boolean): Promise<void>; get logoutUrl(): string; get checkUrl(): string; } export { LogoutService };