UNPKG

@bryancode/react-select

Version:

A customizable modular select built for React JS

9 lines (8 loc) 234 B
import { OptionInterface } from "./option.interface"; export interface SelectRef<Option = OptionInterface> { open: boolean; text: string; value?: Option; openDropdown: () => void; clearInput: () => void; }