Skip to content

Commit f34fad5

Browse files
committed
fix
1 parent f7c9f80 commit f34fad5

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

baselines/webworker.iterable.generated.d.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,13 @@ interface Headers {
5050
values(): IterableIterator<string>;
5151
}
5252

53+
interface IDBDatabase {
54+
/**
55+
* Returns a new transaction with the given mode ("readonly" or "readwrite") and scope which can be a single object store name or an array of names.
56+
*/
57+
transaction(storeNames: string | Iterable<string>, mode?: IDBTransactionMode): IDBTransaction;
58+
}
59+
5360
interface IDBObjectStore {
5461
/**
5562
* Creates a new index in store with the given name, keyPath and options and returns a new IDBIndex. If the keyPath and options define constraints that cannot be satisfied with the data already in store the upgrade transaction will abort with a "ConstraintError" DOMException.

0 commit comments

Comments
 (0)