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) 340 B
import React from 'react'; interface ScrollableBoxProps { children: React.ReactNode; height?: number; } export interface ScrollableBoxHandle { scrollToBottom: () => void; } declare const ScrollableBox: React.ForwardRefExoticComponent<ScrollableBoxProps & React.RefAttributes<ScrollableBoxHandle>>; export default ScrollableBox;