UNPKG

cloakx

Version:

Cloakx is a secure, lightweight CLI tool to manage your development secrets locally — no cloud, no hassle. Store, retrieve, and manage secrets across projects with encryption and ease. 🔐 Perfect for solo devs, indie hackers, and teams who value speed, si

10 lines (9 loc) 303 B
export declare function createSession(password: string, username?: string): void; export declare function getSessionPassword(): string; export declare function getSession(): { username: any; token: any; createdAt: any; expiresAt: string; }; export declare function clearSession(): void;