Skip to content

Commit bcf508f

Browse files
author
falsandtru
committed
Update IDBDatabase interface
1 parent 5d240ca commit bcf508f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

baselines/dom.generated.d.ts

Lines changed: 2 additions & 2 deletions
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;
@@ -12963,4 +12963,4 @@ declare function addEventListener(type: "unload", listener: (ev: Event) => any,
1296312963
declare function addEventListener(type: "volumechange", listener: (ev: Event) => any, useCapture?: boolean): void;
1296412964
declare function addEventListener(type: "waiting", listener: (ev: Event) => any, useCapture?: boolean): void;
1296512965
declare function addEventListener(type: "wheel", listener: (ev: WheelEvent) => any, useCapture?: boolean): void;
12966-
declare function addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;
12966+
declare function addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;

0 commit comments

Comments
 (0)