UNPKG

scandit-web-datacapture-core

Version:

Scandit Data Capture SDK for the Web

16 lines (13 loc) 496 B
/// <reference types="emscripten" /> import { Color } from './Common.js'; import { Viewfinder } from './Viewfinder.js'; import { AimerViewfinderJSON } from './ViewfinderPlusRelated.js'; import { Serializable } from './private/Serializable.js'; declare class AimerViewfinder implements Viewfinder, Serializable<AimerViewfinderJSON> { frameColor: Color; dotColor: Color; private readonly type; constructor(); toJSONObject(): AimerViewfinderJSON; } export { AimerViewfinder };