@regulaforensics/ionic-native-document-reader 8.1.118-rc → 8.1.122-nightly

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/ngx/index.d.ts CHANGED
@@ -1394,8 +1394,8 @@ export declare const eProcessGLCommands: {
1394
1394
  ePC_RFID_SetTCCParams: number;
1395
1395
  };
1396
1396
  export declare const eRFIDReadingBufferSize: {
1397
+ STANDARD_LENGTH: number;
1397
1398
  EXTENDED_LENGTH: number;
1398
- SINGLE_LENGTH: number;
1399
1399
  };
1400
1400
  export declare const PKDResourceType: {
1401
1401
  CERTIFICATE_PA: number;
@@ -3799,8 +3799,8 @@ export declare const Enum: {
3799
3799
  ePC_RFID_SetTCCParams: number;
3800
3800
  };
3801
3801
  eRFIDReadingBufferSize: {
3802
+ STANDARD_LENGTH: number;
3802
3803
  EXTENDED_LENGTH: number;
3803
- SINGLE_LENGTH: number;
3804
3804
  };
3805
3805
  PKDResourceType: {
3806
3806
  CERTIFICATE_PA: number;
@@ -6011,6 +6011,13 @@ export declare class DocumentReader extends AwesomeCordovaNativePlugin {
6011
6011
  * @return {Promise<any>} Returns a promise
6012
6012
  */
6013
6013
  scan(config: ScannerConfig): Observable<any>;
6014
+ /**
6015
+ * Use this method to open the camera preview which will pass frames for recognition and return results in the completion block when they are ready
6016
+ *
6017
+ * @param {ScannerConfig} config
6018
+ * @return {Promise<any>} Returns a promise
6019
+ */
6020
+ startScanner(config: ScannerConfig): Observable<any>;
6014
6021
  /**
6015
6022
  * Use this method to recognize images
6016
6023
  *