UNPKG

react-zoom-pan-pinch

Version:
12 lines (10 loc) 297 B
import { ReactZoomPanPinchRef } from "../models"; export const handleCallback = <T>( context: ReactZoomPanPinchRef, event: T, callback?: (context: ReactZoomPanPinchRef, event: T) => void, ): void => { if (callback && typeof callback === "function") { callback(context, event); } };