@regulaforensics/ionic-native-document-reader 9.4.456-beta → 9.4.457-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
@@ -6504,17 +6504,17 @@ export declare class DocumentReader extends AwesomeCordovaNativePlugin {
6504
6504
  /**
6505
6505
  * Use the method below to open the RFID chip reading controller and start its processing
6506
6506
  *
6507
- * @param {RFIDConfig} config
6507
+ * @param {RFIDConfig | null} config
6508
6508
  * @return {Promise<any>} Returns a promise
6509
6509
  */
6510
- startRFIDReader(config: RFIDConfig): Observable<any>;
6510
+ startRFIDReader(config: RFIDConfig | null): Observable<any>;
6511
6511
  /**
6512
6512
  * Use this method to start RFID chip processing
6513
6513
  *
6514
- * @param {RFIDConfig} config
6514
+ * @param {RFIDConfig | null} config
6515
6515
  * @return {Promise<any>} Returns a promise
6516
6516
  */
6517
- readRFID(config: RFIDConfig): Observable<any>;
6517
+ readRFID(config: RFIDConfig | null): Observable<any>;
6518
6518
  /**
6519
6519
  * Use the method below to close the RFID chip reading controller and end its processing
6520
6520
  *