UNPKG

@scandit/web-datacapture-core

Version:

Scandit Data Capture SDK for the Web

13 lines (10 loc) 508 B
/// <reference types="emscripten" /> import { FocusGestureJSON, FocusGesture, ZoomGestureJSON, ZoomGesture } from '../DataCaptureViewPlusRelated.js'; import '../private/Serializable.js'; declare class PrivateFocusGestureDeserializer { static fromJSON(json: FocusGestureJSON | null): FocusGesture | null; } declare class PrivateZoomGestureDeserializer { static fromJSON(json: ZoomGestureJSON | null): ZoomGesture | null; } export { PrivateFocusGestureDeserializer, PrivateZoomGestureDeserializer };