capacitor-native-keychain
v0.1.1
Published
Keychain usage in Capacitor v8+ apps
Readme
capacitor-native-keychain
Keychain usage in Capacitor v8+ apps
Install
npm install capacitor-native-keychain
npx cap syncAPI
set(...)
set(options: { key: string; value: string; accessGroup?: string; }) => Promise<{ value: string; }>| Param | Type |
| ------------- | ------------------------------------------------------------------ |
| options | { key: string; value: string; accessGroup?: string; } |
Returns: Promise<{ value: string; }>
get(...)
get(options: { key: string; accessGroup?: string; }) => Promise<{ value: string; }>| Param | Type |
| ------------- | --------------------------------------------------- |
| options | { key: string; accessGroup?: string; } |
Returns: Promise<{ value: string; }>
