@pixelverse/strichjs-sdk 1.5.0 → 1.5.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.
- package/CHANGELOG.md +10 -0
- package/dist/strich-noesm.js +3 -3
- package/dist/strich.d.ts +7 -6
- package/dist/strich.js +3 -3
- package/package.json +1 -1
package/dist/strich.d.ts
CHANGED
|
@@ -155,12 +155,6 @@ export declare interface EngineConfiguration {
|
|
|
155
155
|
* (all symbologies enabled - NOT RECOMMENDED)
|
|
156
156
|
*/
|
|
157
157
|
symbologies?: (SymbologyName | SymbologySpec)[];
|
|
158
|
-
/**
|
|
159
|
-
* The number of scanlines to run over a located barcode candidate.
|
|
160
|
-
*
|
|
161
|
-
* @defaultValue 10
|
|
162
|
-
*/
|
|
163
|
-
numScanlines?: number;
|
|
164
158
|
/**
|
|
165
159
|
* The number of scanlines that need to decoded successfully for a valid decode.
|
|
166
160
|
*
|
|
@@ -611,6 +605,13 @@ export declare type SymbologySpec = {
|
|
|
611
605
|
* The maximum length of the barcode, only has an effect for variable-length symbologies.
|
|
612
606
|
*/
|
|
613
607
|
maxLen?: number;
|
|
608
|
+
/**
|
|
609
|
+
* The minimum length of the leading and trailing quiet zone for this symbology, expressed as multiples of X.
|
|
610
|
+
*
|
|
611
|
+
* @remarks
|
|
612
|
+
* There is rarely a need to change the default.
|
|
613
|
+
*/
|
|
614
|
+
qz?: number;
|
|
614
615
|
};
|
|
615
616
|
|
|
616
617
|
export { }
|