UNPKG

@tastekim/chat-cli

Version:

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

15 lines (14 loc) • 358 B
import { LocationInfo } from '../utils/location-detector.js'; export interface SetupResult { nickname: string; room: string; location: LocationInfo; } export declare class SetupFlow { private userManager; constructor(); start(): Promise<SetupResult>; private setupNickname; private showTitle; private showPrivacyNotice; }