Skip to content

Commit 16031bc

Browse files
Update LKG.
1 parent 1cd8ee4 commit 16031bc

Some content is hidden

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

41 files changed

+112884
-71921
lines changed

lib/cs/diagnosticMessages.generated.json

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

lib/de/diagnosticMessages.generated.json

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

lib/es/diagnosticMessages.generated.json

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

lib/fr/diagnosticMessages.generated.json

Lines changed: 84 additions & 27 deletions
Large diffs are not rendered by default.

lib/it/diagnosticMessages.generated.json

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

lib/ja/diagnosticMessages.generated.json

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

lib/ko/diagnosticMessages.generated.json

Lines changed: 77 additions & 20 deletions
Large diffs are not rendered by default.

lib/lib.dom.d.ts

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

lib/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.

lib/lib.es2015.iterable.d.ts

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ interface Set<T> {
174174
*/
175175
entries(): IterableIterator<[T, T]>;
176176
/**
177-
* Despite its name, returns an iterable of the values in the set,
177+
* Despite its name, returns an iterable of the values in the set.
178178
*/
179179
keys(): IterableIterator<T>;
180180

@@ -194,7 +194,7 @@ interface ReadonlySet<T> {
194194
entries(): IterableIterator<[T, T]>;
195195

196196
/**
197-
* Despite its name, returns an iterable of the values in the set,
197+
* Despite its name, returns an iterable of the values in the set.
198198
*/
199199
keys(): IterableIterator<T>;
200200

@@ -242,10 +242,6 @@ interface PromiseConstructor {
242242
race<T>(values: Iterable<T | PromiseLike<T>>): Promise<T>;
243243
}
244244

245-
declare namespace Reflect {
246-
function enumerate(target: object): IterableIterator<any>;
247-
}
248-
249245
interface String {
250246
/** Iterator */
251247
[Symbol.iterator](): IterableIterator<string>;

0 commit comments

Comments
 (0)