From 45218102f3d9e9d5b3e9f53ba85af2f9d9926ec1 Mon Sep 17 00:00:00 2001 From: mkw Date: Sat, 22 Feb 2020 03:23:39 -0800 Subject: [PATCH] feat(keychain-touch-id): added userAuthenticationRequired parameter to save method (#3324) * added userAuthenticationRequired parameter to save method * fixed whitespace --- src/@ionic-native/plugins/keychain-touch-id/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/@ionic-native/plugins/keychain-touch-id/index.ts b/src/@ionic-native/plugins/keychain-touch-id/index.ts index ce0a5ca8a..0b331e7b5 100644 --- a/src/@ionic-native/plugins/keychain-touch-id/index.ts +++ b/src/@ionic-native/plugins/keychain-touch-id/index.ts @@ -50,7 +50,7 @@ export class KeychainTouchId extends IonicNativePlugin { * @return {Promise} Returns a promise that resolves when there is a result */ @Cordova() - save(key: string, password: string): Promise { + save(key: string, password: string, userAuthenticationRequired: boolean): Promise { return; }