fix(barcodescanner): add missing options param

closes #180
This commit is contained in:
Ibrahim Hadeed 2016-06-09 09:38:58 -04:00
parent dfd9d60dfc
commit 4fdcbb5726

View File

@ -32,7 +32,7 @@ export class BarcodeScanner {
* @return Returns a Promise that resolves with scanner data, or rejects with an error.
*/
@Cordova()
static scan(): Promise<any> { return; }
static scan(options?: any): Promise<any> { return; }
// Not well supported
// @Cordova()