mirror of
https://github.com/actualbudget/actual.git
synced 2026-05-07 12:28:57 -05: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 {};
|