Skip to content

Commit 3f8d0e5

Browse files
Update to TypeScript 4.2.2.
1 parent 6319cc1 commit 3f8d0e5

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+98159
-66839
lines changed

tsserver/cs/diagnosticMessages.generated.json

Lines changed: 46 additions & 19 deletions
Large diffs are not rendered by default.

tsserver/de/diagnosticMessages.generated.json

Lines changed: 57 additions & 18 deletions
Large diffs are not rendered by default.

tsserver/diagnosticMessages.generated.json

Lines changed: 0 additions & 1047 deletions
This file was deleted.

tsserver/es/diagnosticMessages.generated.json

Lines changed: 60 additions & 21 deletions
Large diffs are not rendered by default.

tsserver/fr/diagnosticMessages.generated.json

Lines changed: 63 additions & 24 deletions
Large diffs are not rendered by default.

tsserver/it/diagnosticMessages.generated.json

Lines changed: 62 additions & 23 deletions
Large diffs are not rendered by default.

tsserver/ja/diagnosticMessages.generated.json

Lines changed: 65 additions & 26 deletions
Large diffs are not rendered by default.

tsserver/ko/diagnosticMessages.generated.json

Lines changed: 46 additions & 19 deletions
Large diffs are not rendered by default.

tsserver/lib.dom.d.ts

Lines changed: 356 additions & 216 deletions
Large diffs are not rendered by default.

tsserver/lib.dom.iterable.d.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -129,6 +129,13 @@ interface Headers {
129129
values(): IterableIterator<string>;
130130
}
131131

132+
interface IDBDatabase {
133+
/**
134+
* 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.
135+
*/
136+
transaction(storeNames: string | Iterable<string>, mode?: IDBTransactionMode): IDBTransaction;
137+
}
138+
132139
interface IDBObjectStore {
133140
/**
134141
* 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)