communication-react-19
Version:
React library for building modern communication user experiences utilizing Azure Communication Services (React 19 compatible fork)
18 lines • 423 B
TypeScript
/**
* @private
*/
export default function useLongPress(props: {
onLongPress: () => void;
onClick?: () => void;
touchEventsOnly?: boolean;
}): {
onClick: () => void;
onMouseDown: () => void;
onMouseUp: () => void;
onTouchStart: () => void;
onTouchEnd: () => void;
onKeyDown: () => void;
onKeyUp: () => void;
onTouchMove: () => void;
};
//# sourceMappingURL=useLongPress.d.ts.map