BarcodeScanner

This commit is contained in:
Rickard Ekman
2016-02-02 15:35:45 +01:00
parent 536a8e5898
commit c94fe23d2a
25 changed files with 318 additions and 7 deletions
+17
View File
@@ -0,0 +1,17 @@
/**
* The Barcode Scanner Plugin opens a camera view and automatically scans a barcode, returning the data back to you.
*
* Requires Cordova plugin: `phonegap-plugin-barcodescanner`. For more info, please see the [BardcodeScanner plugin docs](https://github.com/phonegap/phonegap-plugin-barcodescanner).
*
* @usage
* ```js
* BarcodeScanner.scan(options).then((barcodeData) => {
* // Success! Barcode data is here
* }, (err) => {
* // An error occurred
* });
* ```
*/
export declare class BarcodeScanner {
static scan(options: any): void;
}