scanbot-web-sdk 2.9.2 → 2.9.3-beta.2
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.
- package/@types/model/configuration/scanner-configuration.d.ts +2 -2
- package/@types/scanner-view.d.ts +1 -0
- package/bundle/ScanbotSDK.min.js +1 -1
- package/bundle/bin/barcode-scanner/ScanbotSDK.Asm.wasm +0 -0
- package/bundle/bin/barcode-scanner/ScanbotSDK.Asm.wasm-webpack-file-loader +0 -0
- package/bundle/bin/barcode-scanner/ScanbotSDK.Core.js +1 -1
- package/bundle/bin/complete/ScanbotSDK.Asm.wasm +0 -0
- package/bundle/bin/complete/ScanbotSDK.Asm.wasm-webpack-file-loader +0 -0
- package/bundle/bin/complete/ScanbotSDK.Core.js +1 -1
- package/bundle/bin/document-scanner/ScanbotSDK.Asm.wasm +0 -0
- package/bundle/bin/document-scanner/ScanbotSDK.Asm.wasm-webpack-file-loader +0 -0
- package/bundle/bin/document-scanner/ScanbotSDK.Core.js +1 -1
- package/package.json +1 -1
|
@@ -11,7 +11,7 @@ export declare class ScannerConfiguration extends BaseConfiguration {
|
|
|
11
11
|
mirrored?: boolean;
|
|
12
12
|
static mapVideoConstraints(json: any, configuration: ScannerConfiguration): void;
|
|
13
13
|
/**
|
|
14
|
-
* Error callback of the SDK.
|
|
14
|
+
* Error callback of the SDK.
|
|
15
15
|
*/
|
|
16
|
-
onError
|
|
16
|
+
onError: (e: any) => void;
|
|
17
17
|
}
|
package/@types/scanner-view.d.ts
CHANGED
|
@@ -8,6 +8,7 @@ export declare class ScanbotCameraProps {
|
|
|
8
8
|
onFailure?: (err: Error) => void;
|
|
9
9
|
}
|
|
10
10
|
export declare class ScanbotCameraState {
|
|
11
|
+
initialized?: boolean;
|
|
11
12
|
}
|
|
12
13
|
export declare abstract class ScannerView<P extends ScanbotCameraProps, S extends ScanbotCameraState> extends React.Component<P, S> {
|
|
13
14
|
static DEFAULT_DETECTION_RESOLUTION: number;
|