docs(barcodescanner): add return type to scan()

This commit is contained in:
Tim Lancina
2016-02-15 08:59:44 -06:00
parent 7b6395817e
commit 0fc8b0f929
4 changed files with 4 additions and 1 deletions
+1
View File
@@ -15,6 +15,7 @@
export declare class BarcodeScanner {
/**
* Open the barcode scanner.
* @return Returns a Promise that resolves with scanner data, or rejects with an error.
*/
static scan(): Promise<any>;
}