UNPKG

@tastekim/chat-cli

Version:

💬Connect with developers worldwide through an interactive terminal chat experience while you code!💻

14 lines (13 loc) • 331 B
export interface UserInfo { nickname: string; createdAt?: Date; lastUsed?: Date; } export declare class UserManager { private configDir; private configFile; constructor(); getStoredUser(): Promise<UserInfo | null>; saveUser(userInfo: UserInfo): Promise<void>; updateLastUsed(): Promise<void>; }