Merge branch 'master' of github.com:driftyco/ionic-native

This commit is contained in:
Ibby Hadeed
2016-12-01 18:45:35 -05:00
88 changed files with 638 additions and 351 deletions
+3
View File
@@ -36,6 +36,7 @@ export class CardIO {
* Check whether card scanning is currently available. (May vary by
* device, OS version, network connectivity, etc.)
*
* @returns {Promise<boolean>}
*/
@Cordova()
static canScan(): Promise<boolean> { return; }
@@ -43,12 +44,14 @@ export class CardIO {
/**
* Scan a credit card with card.io.
* @param {CardIOOptions} options Options for configuring the plugin
* @returns {Promise<any>}
*/
@Cordova()
static scan(options?: CardIOOptions): Promise<CardIOResponse> { return; }
/**
* Retrieve the version of the card.io library. Useful when contacting support.
* @returns {Promise<string>}
*/
@Cordova()
static version(): Promise<string> { return; }