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

10 lines (9 loc) 295 B
import React from 'react'; import { HistoryItem } from '../utils/responseDisplay.js'; interface CommandHistoryProps { history: HistoryItem[]; showHistory: boolean; useComponents?: boolean; } declare const CommandHistory: React.FC<CommandHistoryProps>; export default CommandHistory;