UNPKG

@algolia/autocomplete-js

Version:

Fast and fully-featured autocomplete JavaScript library.

6 lines (5 loc) 270 B
declare type WithElementProps<TProps> = TProps & Record<string, unknown> & { children?: Node[]; }; export declare type AutocompleteElement<TProps = {}, TElement extends HTMLOrSVGElement = HTMLOrSVGElement> = (props: WithElementProps<TProps>) => TElement; export {};