UNPKG

@onesy/ui-react

Version:
19 lines (18 loc) 486 B
export declare type IOptionsUseSwipe = { open?: boolean; min?: number; direction?: 'top' | 'left' | 'right' | 'bottom'; touchAnywhere?: boolean; flick?: boolean; flickTreshold?: number; }; export declare type IResponseUseSwipe = { value?: number; valuePercentage?: number; position?: string; }; declare const useSwipe: { (element: HTMLElement, options_?: IOptionsUseSwipe): IResponseUseSwipe; displayName: string; }; export default useSwipe;