UNPKG

mobile-pdf

Version:

A mobile-friendly PDF viewer based on pdfjs-dist.

11 lines (10 loc) 294 B
import { TouchCenter } from './types'; /** * 计算两点间距离 */ export declare const getDistance: (touches: TouchList) => number; /** * 获取触摸中心点 */ export declare const getTouchCenter: (touches: TouchList) => TouchCenter; export declare const isPCByTouch: () => boolean;