Definition
Pseudocode
useDoubleTap(callback [, threshold] [, options]): bindObjTypeScript
declare function useDoubleTap<
Target = Element,
Callback extends DoubleTapCallback<Target> = DoubleTapCallback<Target>
>(
callback: Callback,
threshold?: number,
options?: DoubleTapOptions<Target>
): DoubleTapResult<Target, Callback>;Last updated
Was this helpful?