1.0.7 • Published 1 year ago
capacitor-secure-storage v1.0.7
capacitor-secure-storage
Work with Secure Storage for iOS, Android
Install
npm install capacitor-secure-storage
npx cap sync
API
echo(...)
echo(options: { value: string; }) => Promise<{ value: string; }>
Param | Type |
---|---|
options | { value: string; } |
Returns: Promise<{ value: string; }>
Interfaces
SecureStorageGetItemRequest
Prop | Type |
---|---|
key | string |
SecureStorageGetItemResult
Prop | Type |
---|---|
data | string | null |
SecureStorageSetItemRequest
Prop | Type |
---|---|
key | string |
data | string |