Stores an Object in the eitri-app shared storage
Example:
let myObject = {myData: 'valueOfMyData'}
await Eitri.sharedStorage.setItemJson('myData', myObject)
Key for registration
JSON object to be saved
- API LEVEL
2- Functionality added
Generated using TypeDoc
Set of methods to operate data storage shared between eitri-apps.
Data is transmitted as a string and handled with JSON encoding/decoding. Pay attention to the size of the data to avoid affecting the experience.
Deprecated
This class is deprecated. Use the Storage class methods instead and pass StorageOptions with the shared flag set to
truefor shared storage functionality.