@@ -13535,7 +13535,7 @@ IDBCreateIndexOptions[JT] val multiEntry: js.UndefOr[Boolean]
13535
13535
IDBCreateIndexOptions[JT] val unique: js.UndefOr[Boolean]
13536
13536
IDBCreateObjectStoreOptions[JT] val autoIncrement: js.UndefOr[Boolean]
13537
13537
IDBCreateObjectStoreOptions[JT] val keyPath: IDBKeyPath
13538
- IDBCursor[JC] def advance(count: Int ): Unit
13538
+ IDBCursor[JC] def advance(count: Double ): Unit
13539
13539
IDBCursor[JC] def continue(key: IDBKey?): Unit
13540
13540
IDBCursor[JC] def delete(): IDBRequest[S, Unit]
13541
13541
IDBCursor[JC] def direction: IDBCursorDirection
@@ -13548,13 +13548,13 @@ IDBCursorDirection[SO] def next: IDBCursorDirection
13548
13548
IDBCursorDirection[SO] def nextunique: IDBCursorDirection
13549
13549
IDBCursorDirection[SO] def prev: IDBCursorDirection
13550
13550
IDBCursorDirection[SO] def prevunique: IDBCursorDirection
13551
- IDBCursorReadOnly[JC] def advance(count: Int ): Unit
13551
+ IDBCursorReadOnly[JC] def advance(count: Double ): Unit
13552
13552
IDBCursorReadOnly[JC] def continue(key: IDBKey?): Unit
13553
13553
IDBCursorReadOnly[JC] def direction: IDBCursorDirection
13554
13554
IDBCursorReadOnly[JC] def key: IDBKey
13555
13555
IDBCursorReadOnly[JC] def primaryKey: IDBKey
13556
13556
IDBCursorReadOnly[JC] def source: S
13557
- IDBCursorWithValue[JC] def advance(count: Int ): Unit
13557
+ IDBCursorWithValue[JC] def advance(count: Double ): Unit
13558
13558
IDBCursorWithValue[JC] def continue(key: IDBKey?): Unit
13559
13559
IDBCursorWithValue[JC] def delete(): IDBRequest[S, Unit]
13560
13560
IDBCursorWithValue[JC] def direction: IDBCursorDirection
@@ -13605,10 +13605,10 @@ IDBFactory[JC] def cmp(first: IDBValue, second: IDBValue): Int
13605
13605
IDBFactory[JC] def databases(): js.Promise[js.Array[IDBDatabaseInfo]]
13606
13606
IDBFactory[JC] def deleteDatabase(name: String): IDBOpenDBRequest[Unit]
13607
13607
IDBFactory[JC] def open(name: String, version: Int?): IDBOpenDBRequest[IDBDatabase]
13608
- IDBIndex[JC] def count(query: IDBKey | IDBKeyRange?): IDBRequest[S, Int ]
13608
+ IDBIndex[JC] def count(query: IDBKey | IDBKeyRange?): IDBRequest[S, Double ]
13609
13609
IDBIndex[JC] def get(key: IDBKey | IDBKeyRange): IDBRequest[S, IDBValue]
13610
- IDBIndex[JC] def getAll(query: js.UndefOr[IDBKeyRange | IDBKey]?, count: js.UndefOr[Int ]?): IDBRequest[S, js.Array[IDBValue]]
13611
- IDBIndex[JC] def getAllKeys(query: js.UndefOr[IDBKeyRange | IDBKey]?, count: js.UndefOr[Int ]?): IDBRequest[S, js.Array[IDBKey]]
13610
+ IDBIndex[JC] def getAll(query: js.UndefOr[IDBKeyRange | IDBKey]?, count: js.UndefOr[Double ]?): IDBRequest[S, js.Array[IDBValue]]
13611
+ IDBIndex[JC] def getAllKeys(query: js.UndefOr[IDBKeyRange | IDBKey]?, count: js.UndefOr[Double ]?): IDBRequest[S, js.Array[IDBKey]]
13612
13612
IDBIndex[JC] def getKey(key: IDBKey): IDBRequest[S, js.UndefOr[IDBKey]]
13613
13613
IDBIndex[JC] def keyPath: IDBKeyPath
13614
13614
IDBIndex[JC] val multiEntry: Boolean
@@ -13627,13 +13627,13 @@ IDBKeyRange[JO] def only(value: IDBValue): IDBKeyRange
13627
13627
IDBKeyRange[JO] def upperBound(bound: IDBKey, open: Boolean?): IDBKeyRange
13628
13628
IDBObjectStore[JC] def add(value: IDBValue, key: IDBKey?): IDBRequest[IDBObjectStore, IDBKey]
13629
13629
IDBObjectStore[JC] def clear(): IDBRequest[IDBObjectStore, Unit]
13630
- IDBObjectStore[JC] def count(query: IDBKey | IDBKeyRange?): IDBRequest[S, Int ]
13630
+ IDBObjectStore[JC] def count(query: IDBKey | IDBKeyRange?): IDBRequest[S, Double ]
13631
13631
IDBObjectStore[JC] def createIndex(name: String, keyPath: IDBKeyPath, optionalParameters: IDBCreateIndexOptions?): IDBIndex
13632
13632
IDBObjectStore[JC] def delete(key: IDBKey | IDBKeyRange): IDBRequest[IDBObjectStore, Unit]
13633
13633
IDBObjectStore[JC] def deleteIndex(indexName: String): Unit
13634
13634
IDBObjectStore[JC] def get(key: IDBKey | IDBKeyRange): IDBRequest[S, IDBValue]
13635
- IDBObjectStore[JC] def getAll(query: js.UndefOr[IDBKeyRange | IDBKey]?, count: js.UndefOr[Int ]?): IDBRequest[S, js.Array[IDBValue]]
13636
- IDBObjectStore[JC] def getAllKeys(query: js.UndefOr[IDBKeyRange | IDBKey]?, count: js.UndefOr[Int ]?): IDBRequest[S, js.Array[IDBKey]]
13635
+ IDBObjectStore[JC] def getAll(query: js.UndefOr[IDBKeyRange | IDBKey]?, count: js.UndefOr[Double ]?): IDBRequest[S, js.Array[IDBValue]]
13636
+ IDBObjectStore[JC] def getAllKeys(query: js.UndefOr[IDBKeyRange | IDBKey]?, count: js.UndefOr[Double ]?): IDBRequest[S, js.Array[IDBKey]]
13637
13637
IDBObjectStore[JC] def getKey(key: IDBKey): IDBRequest[S, js.UndefOr[IDBKey]]
13638
13638
IDBObjectStore[JC] def index(name: String): IDBIndex
13639
13639
IDBObjectStore[JC] def indexNames: DOMStringList
@@ -13669,10 +13669,10 @@ IDBRequest[JC] def removeEventListener[T <: Event](`type`: String, listener: js.
13669
13669
IDBRequest[JC] def result: A
13670
13670
IDBRequest[JC] def source: S
13671
13671
IDBRequest[JC] def transaction: IDBTransaction
13672
- IDBStoreLike[JT] def count(query: IDBKey | IDBKeyRange?): IDBRequest[S, Int ]
13672
+ IDBStoreLike[JT] def count(query: IDBKey | IDBKeyRange?): IDBRequest[S, Double ]
13673
13673
IDBStoreLike[JT] def get(key: IDBKey | IDBKeyRange): IDBRequest[S, IDBValue]
13674
- IDBStoreLike[JT] def getAll(query: js.UndefOr[IDBKeyRange | IDBKey]?, count: js.UndefOr[Int ]?): IDBRequest[S, js.Array[IDBValue]]
13675
- IDBStoreLike[JT] def getAllKeys(query: js.UndefOr[IDBKeyRange | IDBKey]?, count: js.UndefOr[Int ]?): IDBRequest[S, js.Array[IDBKey]]
13674
+ IDBStoreLike[JT] def getAll(query: js.UndefOr[IDBKeyRange | IDBKey]?, count: js.UndefOr[Double ]?): IDBRequest[S, js.Array[IDBValue]]
13675
+ IDBStoreLike[JT] def getAllKeys(query: js.UndefOr[IDBKeyRange | IDBKey]?, count: js.UndefOr[Double ]?): IDBRequest[S, js.Array[IDBKey]]
13676
13676
IDBStoreLike[JT] def getKey(key: IDBKey): IDBRequest[S, js.UndefOr[IDBKey]]
13677
13677
IDBStoreLike[JT] def keyPath: IDBKeyPath
13678
13678
IDBStoreLike[JT] def name: String
0 commit comments