Skip to content

Commit e87a628

Browse files
author
falsandtru
committed
1 parent 3ee89b9 commit e87a628

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

baselines/dom.generated.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6924,7 +6924,7 @@ interface IDBDatabase extends EventTarget {
69246924
objectStoreNames: DOMStringList;
69256925
onabort: (ev: Event) => any;
69266926
onerror: (ev: Event) => any;
6927-
version: string;
6927+
version: number;
69286928
close(): void;
69296929
createObjectStore(name: string, optionalParameters?: IDBObjectStoreParameters): IDBObjectStore;
69306930
deleteObjectStore(name: string): void;

baselines/webworker.generated.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -309,7 +309,7 @@ interface IDBDatabase extends EventTarget {
309309
objectStoreNames: DOMStringList;
310310
onabort: (ev: Event) => any;
311311
onerror: (ev: Event) => any;
312-
version: string;
312+
version: number;
313313
close(): void;
314314
createObjectStore(name: string, optionalParameters?: IDBObjectStoreParameters): IDBObjectStore;
315315
deleteObjectStore(name: string): void;

inputfiles/overridingTypes.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -289,5 +289,11 @@
289289
"interface": "HTMLMediaElement",
290290
"name": "readyState",
291291
"type": "number"
292+
},
293+
{
294+
"kind": "property",
295+
"interface": "IDBDatabase",
296+
"name": "version",
297+
"type": "number"
292298
}
293299
]

0 commit comments

Comments
 (0)