Skip to content

Commit 4f07a17

Browse files
committed
Decrease PR size
1 parent 7bf5b55 commit 4f07a17

File tree

3 files changed

+27
-64
lines changed

3 files changed

+27
-64
lines changed

inputfiles/addedTypes.jsonc

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -408,10 +408,6 @@
408408
}
409409
}
410410
},
411-
"IDBOpenDBRequest": {
412-
"name": "IDBOpenDBRequest",
413-
"extends": "IDBRequest<IDBDatabase>"
414-
},
415411
"HTMLBodyElement": {
416412
"properties": {
417413
"property": {

inputfiles/overridingTypes.jsonc

Lines changed: 0 additions & 60 deletions
Original file line numberDiff line numberDiff line change
@@ -1250,66 +1250,6 @@
12501250
}
12511251
}
12521252
},
1253-
"IDBCursor": {
1254-
"properties": {
1255-
"property": {
1256-
"key": {
1257-
"name": "key",
1258-
"type": "IDBValidKey"
1259-
},
1260-
"primaryKey": {
1261-
"name": "primaryKey",
1262-
"type": "IDBValidKey"
1263-
}
1264-
}
1265-
},
1266-
"methods": {
1267-
"method": {
1268-
"continue": {
1269-
"signature": {
1270-
"0": {
1271-
"param": [
1272-
{
1273-
"name": "key",
1274-
"overrideType": "IDBValidKey"
1275-
}
1276-
]
1277-
}
1278-
}
1279-
},
1280-
"continuePrimaryKey": {
1281-
"signature": {
1282-
"0": {
1283-
"param": [
1284-
{
1285-
"name": "key",
1286-
"overrideType": "IDBValidKey"
1287-
},
1288-
{
1289-
"name": "primaryKey",
1290-
"overrideType": "IDBValidKey"
1291-
}
1292-
]
1293-
}
1294-
}
1295-
},
1296-
"delete": {
1297-
"signature": {
1298-
"0": {
1299-
"overrideType": "IDBRequest<undefined>"
1300-
}
1301-
}
1302-
},
1303-
"update": {
1304-
"signature": {
1305-
"0": {
1306-
"overrideType": "IDBRequest<IDBValidKey>"
1307-
}
1308-
}
1309-
}
1310-
}
1311-
}
1312-
},
13131253
"ImageBitmapRenderingContext": {
13141254
"properties": {
13151255
"property": {

inputfiles/patches/indexeddb.kdl

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,30 @@ interface IDBRequest {
55
}
66
property result overrideType=T
77
}
8+
9+
interface IDBOpenDBRequest extends=IDBRequest<IDBDatabase>
10+
11+
interface IDBCursor {
12+
property key type=IDBValidKey
13+
property primaryKey type=IDBValidKey
14+
method continue signatureIndex=0 {
15+
param key type=IDBValidKey
16+
}
17+
method continuePrimaryKey signatureIndex=0 {
18+
param key type=IDBValidKey
19+
param primaryKey type=IDBValidKey
20+
}
21+
22+
method update signatureIndex=0 {
23+
type {
24+
type IDBValidKey
25+
}
26+
}
27+
28+
method delete signatureIndex=0 {
29+
type {
30+
type undefined
31+
}
32+
}
33+
}
34+

0 commit comments

Comments
 (0)