datos-persistentes
v1.1.11
Published
Plugin CapacitorJS para almacenar datos de forma nativa, segura y persistente a pesar de actualizaciones y reinstalaciones de la aplicación.
Downloads
27
Readme
datos-persistentes
Plugin CapacitorJS para almacenar datos de forma nativa, segura y persistente a pesar de actualizaciones y reinstalaciones de la aplicación.
Install
npm install datos-persistentes
npx cap sync
API
configurarAlmacenamiento(...)
configurarAlmacenamiento(options: ConfiguracionAlmacenamientoOptions) => void
| Param | Type |
| ------------- | ------------------------------------------------------------------------------------------------- |
| options
| ConfiguracionAlmacenamientoOptions |
escribir(...)
escribir(options: EscribirOptions) => Promise<void>
| Param | Type |
| ------------- | ----------------------------------------------------------- |
| options
| EscribirOptions |
leer(...)
leer(options: LeerOptions) => Promise<LeerResult>
| Param | Type |
| ------------- | --------------------------------------------------- |
| options
| LeerOptions |
Returns: Promise<LeerResult>
borrar(...)
borrar(options: BorrarOptions) => Promise<void>
| Param | Type |
| ------------- | ------------------------------------------------------- |
| options
| BorrarOptions |
vaciarAlmacenamiento()
vaciarAlmacenamiento() => Promise<void>
Interfaces
ConfiguracionAlmacenamientoOptions
| Prop | Type |
| ------------------ | ------------------- |
| nombre
| string |
| webStoreName
| string |
EscribirOptions
| Prop | Type |
| ----------- | ------------------- |
| clave
| string |
| valor
| string |
LeerResult
| Prop | Type |
| ----------- | ------------------- |
| valor
| string |
LeerOptions
| Prop | Type |
| ----------- | ------------------- |
| clave
| string |
BorrarOptions
| Prop | Type |
| ----------- | ------------------- |
| clave
| string |