scanbot-web-sdk 2.9.3-beta.7 → 2.10.0-beta.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -4,7 +4,7 @@ export declare class ScannerConfiguration extends BaseConfiguration {
4
4
  width: number;
5
5
  height: number;
6
6
  };
7
- static DEFAULT_VIDEO_RESOLUTION_2K: {
7
+ static DEFAULT_VIDEO_RESOLUTION_HD: {
8
8
  width: number;
9
9
  height: number;
10
10
  };
@@ -0,0 +1,4 @@
1
+ import { LicenseInfo } from "../response/license-info";
2
+ export declare class LicenseError extends Error {
3
+ constructor(licenseInfo: LicenseInfo);
4
+ }
@@ -63,4 +63,5 @@ export default class ScanbotSDK {
63
63
  */
64
64
  throwIfMissingBuffer(buffer: any): void;
65
65
  throwIfMissing(property: any, message: string): void;
66
+ private licenseCheck;
66
67
  }