UNPKG

mycrossword

Version:
9 lines (8 loc) 362 B
import * as React from 'react'; interface GridInputProps { onChange: (event: React.ChangeEvent<HTMLInputElement>) => void; onKeyDown: (event: React.KeyboardEvent<HTMLInputElement>) => void; visible: boolean; } declare const GridInput: React.ForwardRefExoticComponent<GridInputProps & React.RefAttributes<HTMLInputElement>>; export default GridInput;