Skip to content

Cannot find Driver enum. #319

Description

@fudom

Please update docs.
https://github.com/ionic-team/ionic-storage?tab=readme-ov-file#adding-driver-to-configuration

Where do you get Drivers? In @ionic/storage-angular (v4.0.0) types it's just type any. There is not export for Drivers enum.

Workaround: Use string names like 'indexeddb' and 'localstorage'.
Update: Names does not work on browser (without Cordova sqlite).

IonicStorageModule.forRoot({
  driverOrder: [CordovaSqLiteDriver._driver, 'indexeddb', 'localstorage'],
})

It only works if I completly remove driveOrder. I wonder what is value of Drivers.IndexedDB?

This does not work:

IonicStorageModule.forRoot({
  driverOrder: ['indexeddb', 'localstorage'],
})

Doc comment: Possible default driverOrder options are: ['indexeddb', 'localstorage'] and the default is that exact ordering. Lie? Because IonicStorageModule.forRoot() works.

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions