1313 */
1414
1515
16+ // May contain unused imports in some cases
17+ // @ts -ignore
18+ import type { CheckResult } from './check-result' ;
1619// May contain unused imports in some cases
1720// @ts -ignore
1821import type { StringItem } from './string-item' ;
@@ -25,16 +28,16 @@ import type { StringItem } from './string-item';
2528export interface MRZTestQuality {
2629 /**
2730 *
28- * @type {number }
31+ * @type {CheckResult }
2932 * @memberof MRZTestQuality
3033 */
31- 'CHECK_SUMS' : number ;
34+ 'CHECK_SUMS' : CheckResult ;
3235 /**
3336 *
34- * @type {number }
37+ * @type {CheckResult }
3538 * @memberof MRZTestQuality
3639 */
37- 'CONTRAST_PRINT' : number ;
40+ 'CONTRAST_PRINT' : CheckResult ;
3841 /**
3942 *
4043 * @type {number }
@@ -49,22 +52,22 @@ export interface MRZTestQuality {
4952 'MRZ_FORMAT' : number ;
5053 /**
5154 *
52- * @type {number }
55+ * @type {CheckResult }
5356 * @memberof MRZTestQuality
5457 */
55- 'PRINT_POSITION' : number ;
58+ 'PRINT_POSITION' : CheckResult ;
5659 /**
5760 *
58- * @type {number }
61+ * @type {CheckResult }
5962 * @memberof MRZTestQuality
6063 */
61- 'STAIN_MRZ' : number ;
64+ 'STAIN_MRZ' : CheckResult ;
6265 /**
6366 *
64- * @type {number }
67+ * @type {CheckResult }
6568 * @memberof MRZTestQuality
6669 */
67- 'SYMBOLS_PARAM' : number ;
70+ 'SYMBOLS_PARAM' : CheckResult ;
6871 /**
6972 *
7073 * @type {number }
@@ -79,9 +82,11 @@ export interface MRZTestQuality {
7982 'Strings' : Array < StringItem > ;
8083 /**
8184 *
82- * @type {number }
85+ * @type {CheckResult }
8386 * @memberof MRZTestQuality
8487 */
85- 'TEXTUAL_FILLING' : number ;
88+ 'TEXTUAL_FILLING' : CheckResult ;
8689}
8790
91+
92+
0 commit comments