Skip to content

Commit

Permalink
feat(touch-id): add didFingerprintDatabaseChange (#1475)
Browse files Browse the repository at this point in the history
fix #1466
  • Loading branch information
danielsogl authored and ihadeed committed May 5, 2017
1 parent bf88b78 commit d9cc959
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/@ionic-native/plugins/touch-id/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -89,4 +89,12 @@ export class TouchID extends IonicNativePlugin {
@Cordova()
verifyFingerprintWithCustomPasswordFallbackAndEnterPasswordLabel(message: string, enterPasswordLabel: string): Promise<any> { return; }

/**
* Checks if the fingerpringt database changed.
*
* @returns {Promise<any>} Returns a Promise that resolves if yes, rejects if no.
*/
@Cordova()
didFingerprintDatabaseChange(): Promise<any> { return; }

}

0 comments on commit d9cc959

Please sign in to comment.