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

9 lines (8 loc) 248 B
import React from 'react'; import { GameState } from '../hooks/useGame.js'; interface GameInfoProps extends GameState { isLoading: boolean; loadingMessage: string; } declare const GameInfo: React.FC<GameInfoProps>; export default GameInfo;