mirror of
https://github.com/sern-handler/website
synced 2026-06-14 03:42:20 +00:00
10 lines
440 B
TypeScript
10 lines
440 B
TypeScript
import type { AutocompleteApi } from '@algolia/autocomplete-core';
|
|
interface UseTouchEventsProps {
|
|
getEnvironmentProps: AutocompleteApi<any>['getEnvironmentProps'];
|
|
panelElement: HTMLDivElement | null;
|
|
formElement: HTMLDivElement | null;
|
|
inputElement: HTMLInputElement | null;
|
|
}
|
|
export declare function useTouchEvents({ getEnvironmentProps, panelElement, formElement, inputElement, }: UseTouchEventsProps): void;
|
|
export {};
|