cnf
2025-05-10 386fa0eca75ddc88165f9b73038f2a2239e1072e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
export class TouchManager {
    constructor({ container, isPinchingDisabled, isPinchingStopped, onPinchStart, onPinching, onPinchEnd, signal, }: {
        container: any;
        isPinchingDisabled?: null | undefined;
        isPinchingStopped?: null | undefined;
        onPinchStart?: null | undefined;
        onPinching?: null | undefined;
        onPinchEnd?: null | undefined;
        signal: any;
    });
    /**
     * NOTE: Don't shadow this value since `devicePixelRatio` may change if the
     * window resolution changes, e.g. if the viewer is moved to another monitor.
     */
    get MIN_TOUCH_DISTANCE_TO_PINCH(): number;
    destroy(): void;
    #private;
}