UNPKG

chop-logic-components

Version:

React UI components library for Chop Logic project

8 lines (7 loc) 280 B
import { KeyboardEvent } from 'react'; import { ChopLogicSelectValue } from '../models'; export declare function handleDropdownListKeyPress({ e, options, onClose, }: { e: KeyboardEvent<HTMLUListElement>; options: ChopLogicSelectValue[]; onClose: () => void; }): void;