UNPKG

488 BTypeScriptView Raw
1export declare enum IdCaptureErrorCode {
2 Undefined = "Undefined",
3 RecoveredAfterFailure = "RecoveredAfterFailure",
4 InvalidLicenseKeyForVIZProcessing = "InvalidLicenseKeyForVIZProcessing",
5 InvalidSettingsForVIZProcessing = "InvalidSettingsForVIZProcessing"
6}
7export declare class IdCaptureError extends Error {
8 private _type;
9 private _message;
10 get type(): IdCaptureErrorCode;
11 get message(): string;
12 private static create;
13 private static fromJSON;
14}