awesome-cordova-plugins/src/plugins/barcodescanner.ts

38 lines
1.1 KiB
TypeScript
Raw Normal View History

2016-02-02 22:35:45 +08:00
import {Plugin, Cordova} from './plugin';
/**
2016-03-14 03:45:07 +08:00
* @name Barcode Scanner
* @description
2016-02-02 22:35:45 +08:00
* The Barcode Scanner Plugin opens a camera view and automatically scans a barcode, returning the data back to you.
*
2016-02-08 06:12:13 +08:00
* Requires Cordova plugin: `phonegap-plugin-barcodescanner`. For more info, please see the [BarcodeScanner plugin docs](https://github.com/phonegap/phonegap-plugin-barcodescanner).
2016-02-02 22:35:45 +08:00
*
* @usage
* ```js
2016-02-08 06:12:13 +08:00
* BarcodeScanner.scan().then((barcodeData) => {
2016-02-02 22:35:45 +08:00
* // Success! Barcode data is here
* }, (err) => {
* // An error occurred
* });
* ```
*/
@Plugin({
plugin: 'phonegap-plugin-barcodescanner',
pluginRef: 'cordova.plugins.barcodeScanner',
2016-03-15 01:38:35 +08:00
repo: 'https://github.com/phonegap/phonegap-plugin-barcodescanner',
pltaforms: ['Android','iOS','Windows Phone 8','Windows 10','Windows 8','BlackBerry 10', 'Browser']
2016-02-02 22:35:45 +08:00
})
export class BarcodeScanner {
2016-02-08 06:12:13 +08:00
/**
* Open the barcode scanner.
* @return Returns a Promise that resolves with scanner data, or rejects with an error.
2016-02-08 06:12:13 +08:00
*/
2016-02-02 22:35:45 +08:00
@Cordova()
static scan(): Promise<any> { return }
2016-02-08 06:12:13 +08:00
// Not well supported
// @Cordova()
// static encode(type, data){};
2016-02-02 22:35:45 +08:00
}