scandit-web-datacapture-core
Version:
Scandit Data Capture SDK for the Web
16 lines (13 loc) • 479 B
TypeScript
/// <reference types="emscripten" />
import { ViewfinderJSON } from './ViewfinderPlusRelated.js';
import { Serializable } from './private/Serializable.js';
import './Common.js';
interface Viewfinder {
toJSONObject: () => ViewfinderJSON;
}
declare class NoneViewfinder implements Viewfinder, Serializable<ViewfinderJSON> {
private readonly type;
toJSONObject(): ViewfinderJSON;
}
declare const NoViewfinder: NoneViewfinder;
export { NoViewfinder, type Viewfinder };