UNPKG

@hhoangphuoc/escape-room-cli

Version:

A CLI for playing AI-generated escape room games. Install globally with: npm install -g @hhoangphuoc/escape-room-cli

11 lines (10 loc) 390 B
import React from 'react'; interface UserRegistrationProps { onRegistrationComplete: () => void; onCancel?: () => void; username?: string; email?: string; } export declare function handleLogin(userId: string, apiKey?: string, provider?: 'openai' | 'anthropic'): Promise<any>; declare const UserRegistration: React.FC<UserRegistrationProps>; export default UserRegistration;