@scandit/web-datacapture-id
Version:
Scandit Data Capture SDK for the Web
10 lines (9 loc) • 501 B
TypeScript
import type { Serializable } from "@scandit/web-datacapture-core/build/js/private/Serializable";
import { DataConsistencyResult } from "./DataConsistencyResult";
import type { VerificationResultJSON } from "../SerializedTypes";
export declare class VerificationResult implements Serializable<VerificationResultJSON> {
protected json: VerificationResultJSON | null;
get dataConsistency(): DataConsistencyResult | null;
private static fromJSON;
toJSONObject(): VerificationResultJSON;
}