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) 308 B
import React from 'react'; interface CommandInputProps { value: string; onChange: (value: string) => void; onSubmit: (value: string) => void; mode?: 'standard' | 'mcp'; currentRoomObjects?: string[]; } declare const CommandInput: React.FC<CommandInputProps>; export default CommandInput;