Skip to content

Commit 9ff24b6

Browse files
authored
Update LKG (#39173)
1 parent fe33e61 commit 9ff24b6

33 files changed

+349771
-327313
lines changed

lib/cs/diagnosticMessages.generated.json

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

lib/de/diagnosticMessages.generated.json

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

lib/es/diagnosticMessages.generated.json

Lines changed: 28 additions & 7 deletions
Large diffs are not rendered by default.

lib/fr/diagnosticMessages.generated.json

Lines changed: 28 additions & 7 deletions
Large diffs are not rendered by default.

lib/it/diagnosticMessages.generated.json

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

lib/ja/diagnosticMessages.generated.json

Lines changed: 29 additions & 8 deletions
Large diffs are not rendered by default.

lib/ko/diagnosticMessages.generated.json

Lines changed: 29 additions & 8 deletions
Large diffs are not rendered by default.

lib/lib.dom.d.ts

Lines changed: 78 additions & 38 deletions
Large diffs are not rendered by default.

lib/lib.es2015.core.d.ts

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -454,48 +454,48 @@ interface String {
454454
startsWith(searchString: string, position?: number): boolean;
455455

456456
/**
457-
* Returns an <a> HTML anchor element and sets the name attribute to the text value
457+
* Returns an `<a>` HTML anchor element and sets the name attribute to the text value
458458
* @param name
459459
*/
460460
anchor(name: string): string;
461461

462-
/** Returns a <big> HTML element */
462+
/** Returns a `<big>` HTML element */
463463
big(): string;
464464

465-
/** Returns a <blink> HTML element */
465+
/** Returns a `<blink>` HTML element */
466466
blink(): string;
467467

468-
/** Returns a <b> HTML element */
468+
/** Returns a `<b>` HTML element */
469469
bold(): string;
470470

471-
/** Returns a <tt> HTML element */
471+
/** Returns a `<tt>` HTML element */
472472
fixed(): string;
473473

474-
/** Returns a <font> HTML element and sets the color attribute value */
474+
/** Returns a `<font>` HTML element and sets the color attribute value */
475475
fontcolor(color: string): string;
476476

477-
/** Returns a <font> HTML element and sets the size attribute value */
477+
/** Returns a `<font>` HTML element and sets the size attribute value */
478478
fontsize(size: number): string;
479479

480-
/** Returns a <font> HTML element and sets the size attribute value */
480+
/** Returns a `<font>` HTML element and sets the size attribute value */
481481
fontsize(size: string): string;
482482

483-
/** Returns an <i> HTML element */
483+
/** Returns an `<i>` HTML element */
484484
italics(): string;
485485

486-
/** Returns an <a> HTML element and sets the href attribute value */
486+
/** Returns an `<a>` HTML element and sets the href attribute value */
487487
link(url: string): string;
488488

489-
/** Returns a <small> HTML element */
489+
/** Returns a `<small>` HTML element */
490490
small(): string;
491491

492-
/** Returns a <strike> HTML element */
492+
/** Returns a `<strike>` HTML element */
493493
strike(): string;
494494

495-
/** Returns a <sub> HTML element */
495+
/** Returns a `<sub>` HTML element */
496496
sub(): string;
497497

498-
/** Returns a <sup> HTML element */
498+
/** Returns a `<sup>` HTML element */
499499
sup(): string;
500500
}
501501

lib/lib.es2017.sharedmemory.d.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,8 +122,11 @@ interface Atomics {
122122
/**
123123
* Wakes up sleeping agents that are waiting on the given index of the array, returning the
124124
* number of agents that were awoken.
125+
* @param typedArray A shared Int32Array.
126+
* @param index The position in the typedArray to wake up on.
127+
* @param count The number of sleeping agents to notify. Defaults to +Infinity.
125128
*/
126-
notify(typedArray: Int32Array, index: number, count: number): number;
129+
notify(typedArray: Int32Array, index: number, count?: number): number;
127130

128131
/**
129132
* Stores the bitwise XOR of a value with the value at the given position in the array,

0 commit comments

Comments
 (0)