feat(touch-id): add didFingerprintDatabaseChange (#1475)

fix #1466
This commit is contained in:
Daniel Sogl 2017-05-05 19:54:30 +02:00 committed by Ibby Hadeed
parent bf88b78c63
commit d9cc959939

View File

@ -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; }
}