File tree Expand file tree Collapse file tree 3 files changed +12
-12
lines changed
src/main/scala/org/scalajs/dom Expand file tree Collapse file tree 3 files changed +12
-12
lines changed Original file line number Diff line number Diff line change @@ -25619,16 +25619,16 @@ idb[SO] type Cursor[+Source] = IDBCursor[Source]
25619
25619
idb[SO] type Database = IDBDatabase
25620
25620
idb[SO] type DatabaseInfo = IDBDatabaseInfo
25621
25621
idb[SO] type Environment = IDBEnvironment (@deprecated in 1.2.0)
25622
- idb[SO] type EventTarget[+A ] = IDBEventTarget[A ]
25623
- idb[SO] type Event[+A ] = IDBEvent[A ]
25622
+ idb[SO] type EventTarget[+Result ] = IDBEventTarget[Result ]
25623
+ idb[SO] type Event[+TargetResult ] = IDBEvent[TargetResult ]
25624
25624
idb[SO] type Factory = IDBFactory
25625
25625
idb[SO] type Index = IDBIndex
25626
25626
idb[SO] type Key = IDBKey
25627
25627
idb[SO] type KeyPath = IDBKeyPath
25628
25628
idb[SO] type KeyRange = IDBKeyRange
25629
25629
idb[SO] type ObjectStore = IDBObjectStore
25630
- idb[SO] type OpenDBRequest[A ] = IDBOpenDBRequest[A ]
25631
- idb[SO] type Request[+Source, A ] = IDBRequest[Source, A ]
25630
+ idb[SO] type OpenDBRequest[TargetResult ] = IDBOpenDBRequest[TargetResult ]
25631
+ idb[SO] type Request[+Source, TargetResult ] = IDBRequest[Source, TargetResult ]
25632
25632
idb[SO] type Transaction = IDBTransaction
25633
25633
idb[SO] type Value = IDBValue
25634
25634
idb[SO] type VersionChangeEvent = IDBVersionChangeEvent
Original file line number Diff line number Diff line change @@ -25619,16 +25619,16 @@ idb[SO] type Cursor[+Source] = IDBCursor[Source]
25619
25619
idb[SO] type Database = IDBDatabase
25620
25620
idb[SO] type DatabaseInfo = IDBDatabaseInfo
25621
25621
idb[SO] type Environment = IDBEnvironment (@deprecated in 1.2.0)
25622
- idb[SO] type EventTarget[+A ] = IDBEventTarget[A ]
25623
- idb[SO] type Event[+A ] = IDBEvent[A ]
25622
+ idb[SO] type EventTarget[+Result ] = IDBEventTarget[Result ]
25623
+ idb[SO] type Event[+TargetResult ] = IDBEvent[TargetResult ]
25624
25624
idb[SO] type Factory = IDBFactory
25625
25625
idb[SO] type Index = IDBIndex
25626
25626
idb[SO] type Key = IDBKey
25627
25627
idb[SO] type KeyPath = IDBKeyPath
25628
25628
idb[SO] type KeyRange = IDBKeyRange
25629
25629
idb[SO] type ObjectStore = IDBObjectStore
25630
- idb[SO] type OpenDBRequest[A ] = IDBOpenDBRequest[A ]
25631
- idb[SO] type Request[+Source, A ] = IDBRequest[Source, A ]
25630
+ idb[SO] type OpenDBRequest[TargetResult ] = IDBOpenDBRequest[TargetResult ]
25631
+ idb[SO] type Request[+Source, TargetResult ] = IDBRequest[Source, TargetResult ]
25632
25632
idb[SO] type Transaction = IDBTransaction
25633
25633
idb[SO] type Value = IDBValue
25634
25634
idb[SO] type VersionChangeEvent = IDBVersionChangeEvent
Original file line number Diff line number Diff line change @@ -10,16 +10,16 @@ object idb {
10
10
type CursorWithValue = IDBCursorWithValue
11
11
type Database = IDBDatabase
12
12
type DatabaseInfo = IDBDatabaseInfo
13
- type Event [+ A ] = IDBEvent [A ]
14
- type EventTarget [+ A ] = IDBEventTarget [A ]
13
+ type Event [+ TargetResult ] = IDBEvent [TargetResult ]
14
+ type EventTarget [+ Result ] = IDBEventTarget [Result ]
15
15
type Factory = IDBFactory
16
16
type Index = IDBIndex
17
17
type Key = IDBKey
18
18
type KeyPath = IDBKeyPath
19
19
type KeyRange = IDBKeyRange
20
20
type ObjectStore = IDBObjectStore
21
- type OpenDBRequest [A ] = IDBOpenDBRequest [A ]
22
- type Request [+ Source , A ] = IDBRequest [Source , A ]
21
+ type OpenDBRequest [TargetResult ] = IDBOpenDBRequest [TargetResult ]
22
+ type Request [+ Source , TargetResult ] = IDBRequest [Source , TargetResult ]
23
23
type Transaction = IDBTransaction
24
24
type Value = IDBValue
25
25
type VersionChangeEvent = IDBVersionChangeEvent
You can’t perform that action at this time.
0 commit comments