UNPKG

zarm

Version:

基于 React 的移动端UI库

7 lines (6 loc) 328 B
import React, { HTMLAttributes } from 'react'; import type { BasePinchZoomProps } from './interface'; export interface PinchZoomProps extends HTMLAttributes<HTMLDivElement>, BasePinchZoomProps { } declare const PinchZoom: React.ForwardRefExoticComponent<PinchZoomProps & React.RefAttributes<unknown>>; export default PinchZoom;