feat(keychain-touch-id): added userAuthenticationRequired parameter to save method (#3324)

* added userAuthenticationRequired parameter to save method

* fixed whitespace
This commit is contained in:
mkw 2020-02-22 03:23:39 -08:00 committed by GitHub
parent a9774e07ae
commit 45218102f3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -50,7 +50,7 @@ export class KeychainTouchId extends IonicNativePlugin {
* @return {Promise<any>} Returns a promise that resolves when there is a result
*/
@Cordova()
save(key: string, password: string): Promise<any> {
save(key: string, password: string, userAuthenticationRequired: boolean): Promise<any> {
return;
}