UNPKG

lingo3d

Version:

Lingo3D is a React/Vue 3d game development framework that ships with a complete visual editor

13 lines (12 loc) 462 B
import { CSSProperties } from "preact/compat"; type Props = { style?: CSSProperties; className?: string; placeholder?: string; autoFocus?: boolean; onEnter?: (value: string) => void; onEscape?: (value: string) => void; options?: Array<string>; }; declare const TextOptionsInput: ({ style, className, placeholder, autoFocus, onEnter, onEscape, options }: Props) => import("preact/compat").JSX.Element; export default TextOptionsInput;