UNPKG

@zqui/react-terminal

Version:

A react component that renders a bash-like terminal.

13 lines (10 loc) 219 B
import React from "react"; type IUserCommands = Record< string, | string | React.JSX.Element | (( args?: any ) => React.JSX.Element | string | void | Promise<string | void>) >; export default IUserCommands;