diff options
Diffstat (limited to 'cli/dts/lib.webworker.iterable.d.ts')
-rw-r--r-- | cli/dts/lib.webworker.iterable.d.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/dts/lib.webworker.iterable.d.ts b/cli/dts/lib.webworker.iterable.d.ts index af2588150..3d9e75d00 100644 --- a/cli/dts/lib.webworker.iterable.d.ts +++ b/cli/dts/lib.webworker.iterable.d.ts @@ -59,7 +59,7 @@ interface Headers { interface IDBDatabase { /** 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. */ - transaction(storeNames: string | Iterable<string>, mode?: IDBTransactionMode): IDBTransaction; + transaction(storeNames: string | Iterable<string>, mode?: IDBTransactionMode, options?: IDBTransactionOptions): IDBTransaction; } interface IDBObjectStore { |