UNPKG

react-autocomplete-plugin

Version:

A simple, powerful, lightweight and customizable autocomplete tool programmed for React projects!

14 lines (13 loc) 402 B
import React from "react"; type ListType = { index: number; data?: any; objectProperty?: string; disableProperty?: string; disableListFn?: Function; dropdownListClass?: string; dropdownListStyle?: React.CSSProperties; onSelect: Function; }; declare const _default: React.ForwardRefExoticComponent<ListType & React.RefAttributes<HTMLLIElement>>; export default _default;