scandit-web-datacapture-barcode
Version:
Scandit Data Capture SDK for the Web
14 lines (11 loc) • 496 B
TypeScript
import { JSONType } from 'scandit-web-datacapture-core';
import { Serializable } from 'scandit-web-datacapture-core/build/js/private/Serializable';
import { ParserDataFormat } from '../ParserDataFormat.js';
interface ParserSettingsJSON extends JSONType {
dataFormat: ParserDataFormat;
}
declare class ParserSettings implements Serializable<ParserSettingsJSON> {
dataFormat: ParserDataFormat;
toJSONObject(): ParserSettingsJSON;
}
export { ParserSettings, type ParserSettingsJSON };