mirror of
https://github.com/danielsogl/awesome-cordova-plugins.git
synced 2025-03-17 00:51:07 +08:00
fix(fingerprint-aio): add useBackup property (#1158)
This commit is contained in:
parent
16ff420bfa
commit
6fdeeaf6f2
@ -11,6 +11,11 @@ export interface FingerprintOptions {
|
|||||||
* Secret password. Only for android
|
* Secret password. Only for android
|
||||||
*/
|
*/
|
||||||
clientSecret?: string;
|
clientSecret?: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Disable 'use backup' option. Only for android (optional)
|
||||||
|
*/
|
||||||
|
disableBackup?: boolean;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -26,7 +31,8 @@ export interface FingerprintOptions {
|
|||||||
*
|
*
|
||||||
* FingerprintAIO.show({
|
* FingerprintAIO.show({
|
||||||
* clientId: "Fingerprint-Demo",
|
* clientId: "Fingerprint-Demo",
|
||||||
* clientSecret: "password" //Only necessary for Android
|
* clientSecret: "password", //Only necessary for Android
|
||||||
|
* disableBackup:true //Only for Android(optional)
|
||||||
* })
|
* })
|
||||||
* .then((result: any) => console.log(any))
|
* .then((result: any) => console.log(any))
|
||||||
* .catch((error: any) => console.log(error));
|
* .catch((error: any) => console.log(error));
|
||||||
|
Loading…
x
Reference in New Issue
Block a user