@scandit/web-datacapture-barcode
Version:
Scandit Data Capture SDK for the Web
17 lines (16 loc) • 531 B
TypeScript
import { Serializable } from "@scandit/web-datacapture-core/build/js/private/Serializable.js";
//#region src/main/ArucoMarker.d.ts
type ArucoMarkerJSON = {
markerData: string;
markerSize: number;
};
declare class ArucoMarker implements Serializable<ArucoMarkerJSON> {
private markerData;
private markerSize;
get size(): number;
get data(): string;
static create(markerSize: number, markerData: string): ArucoMarker;
toJSONObject(): ArucoMarkerJSON;
}
//#endregion
export { ArucoMarkerJSON as n, ArucoMarker as t };