DatabaseWithObjectStores

@Serializable
data class DatabaseWithObjectStores(val name: String, val version: Double, val objectStores: List<IndexedDB.ObjectStore>)

Database with an array of object stores.

Constructors

Link copied to clipboard
constructor(name: String, version: Double, objectStores: List<IndexedDB.ObjectStore>)

Properties

Link copied to clipboard

Database name.

Link copied to clipboard

Object stores in this database.

Link copied to clipboard

Database version (type is not 'integer', as the standard requires the version number to be 'unsigned long long')