UNPKG

rooks

Version:

Collection of awesome react hooks

7 lines (6 loc) 267 B
interface LongPressOptions { onClick?: (e: MouseEvent | TouchEvent) => void; duration?: number; } declare const useOnLongPress: (callback: () => void, { onClick, duration }?: LongPressOptions) => (node: HTMLElement | null) => void; export { useOnLongPress };