react-quick-pinch-zoom
Version:
A react component that providing multi-touch gestures for zooming and dragging on any DOM element.
8 lines (7 loc) • 406 B
TypeScript
import PinchZoomComp from './PinchZoom/component';
import type { DefaultProps, RequiredProps } from './PinchZoom/types';
export default PinchZoomComp;
export { hasTranslate3DSupport, make2dTransformValue, make3dTransformValue, isTouch, } from './utils';
export type { UpdateAction, ScaleToOptions } from './PinchZoom/types';
export interface PinchZoomProps extends RequiredProps, Partial<DefaultProps> {
}