Skip to content

Commit 13f46c7

Browse files
typescript-botorta
andauthored
Update core dependencies (#2127)
Co-authored-by: orta <49038+orta@users.noreply.github.com>
1 parent 72684f0 commit 13f46c7

17 files changed

+49
-49
lines changed

baselines/audioworklet.generated.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -870,7 +870,7 @@ interface ReadableByteStreamController {
870870
*/
871871
close(): void;
872872
/**
873-
* The **`enqueue()`** method of the ReadableByteStreamController interface enqueues a given chunk on the associated readable byte stream (the chunk is copied into the stream's internal queues).
873+
* The **`enqueue()`** method of the ReadableByteStreamController interface enqueues a given chunk on the associated readable byte stream (the chunk is transferred into the stream's internal queues).
874874
*
875875
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableByteStreamController/enqueue)
876876
*/

baselines/dom.generated.d.ts

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -10693,7 +10693,7 @@ declare var Document: {
1069310693
prototype: Document;
1069410694
new(): Document;
1069510695
/**
10696-
* The **`parseHTMLUnsafe()`** static method of the Document object is used to parse an HTML input, optionally filtering unwanted HTML elements and attributes, in order to create a new Document instance.
10696+
* The **`parseHTMLUnsafe()`** static method of the Document object is used to parse HTML input, optionally filtering unwanted HTML elements and attributes, in order to create a new Document instance.
1069710697
*
1069810698
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/parseHTMLUnsafe_static)
1069910699
*/
@@ -11367,7 +11367,7 @@ interface Element extends Node, ARIAMixin, Animatable, ChildNode, NonDocumentTyp
1136711367
*/
1136811368
setAttributeNodeNS(attr: Attr): Attr | null;
1136911369
/**
11370-
* The **`setHTMLUnsafe()`** method of the Element interface is used to parse a string of HTML into a DocumentFragment, optionally filtering out unwanted elements and attributes, and those that don't belong in the context, and then using it to replace the element's subtree in the DOM.
11370+
* The **`setHTMLUnsafe()`** method of the Element interface is used to parse HTML input into a DocumentFragment, optionally filtering out unwanted elements and attributes, and those that don't belong in the context, and then using it to replace the element's subtree in the DOM.
1137111371
*
1137211372
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/setHTMLUnsafe)
1137311373
*/
@@ -15297,7 +15297,7 @@ interface HTMLInputElement extends HTMLElement, PopoverTargetAttributes {
1529715297
*/
1529815298
readonly webkitEntries: ReadonlyArray<FileSystemEntry>;
1529915299
/**
15300-
* The **`webkitdirectory`** property of the HTMLInputElement interface reflects the `webkitdirectory` HTML attribute, which indicates that `<input type='file'>` elements should let the user select directories instead of files.
15300+
* The **`webkitdirectory`** property of the HTMLInputElement interface reflects the `webkitdirectory` HTML attribute, which indicates that `<input type='file'>` elements can only select directories instead of files.
1530115301
*
1530215302
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/webkitdirectory)
1530315303
*/
@@ -18159,7 +18159,7 @@ declare var Headers: {
1815918159
*/
1816018160
interface Highlight {
1816118161
/**
18162-
* It is possible to create Range objects that overlap in a document.
18162+
* The `priority` property of the Highlight interface is a number used to determine which highlight's styles should be used to resolve style conflicts in overlapping parts.
1816318163
*
1816418164
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Highlight/priority)
1816518165
*/
@@ -25583,7 +25583,7 @@ declare var RTCPeerConnectionIceEvent: {
2558325583
*/
2558425584
interface RTCRtpReceiver {
2558525585
/**
25586-
* The **`jitterBufferTarget`** property of the RTCRtpReceiver interface is a DOMHighResTimeStamp that indicates the application's preferred duration, in milliseconds, for which the jitter buffer should hold media before playing it out.
25586+
* The **`jitterBufferTarget`** property of the RTCRtpReceiver interface is a DOMHighResTimeStamp that indicates the application's preferred duration, in milliseconds, for which the jitter should hold media before playing it out.
2558725587
*
2558825588
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCRtpReceiver/jitterBufferTarget)
2558925589
*/
@@ -26123,7 +26123,7 @@ interface ReadableByteStreamController {
2612326123
*/
2612426124
close(): void;
2612526125
/**
26126-
* The **`enqueue()`** method of the ReadableByteStreamController interface enqueues a given chunk on the associated readable byte stream (the chunk is copied into the stream's internal queues).
26126+
* The **`enqueue()`** method of the ReadableByteStreamController interface enqueues a given chunk on the associated readable byte stream (the chunk is transferred into the stream's internal queues).
2612726127
*
2612826128
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableByteStreamController/enqueue)
2612926129
*/
@@ -31133,7 +31133,7 @@ interface ShadowRoot extends DocumentFragment, DocumentOrShadowRoot {
3113331133
*/
3113431134
getHTML(options?: GetHTMLOptions): string;
3113531135
/**
31136-
* The **`setHTMLUnsafe()`** method of the ShadowRoot interface can be used to parse a string of HTML into a DocumentFragment, optionally filtering out unwanted elements and attributes, and then use it to replace the existing tree in the Shadow DOM.
31136+
* The **`setHTMLUnsafe()`** method of the ShadowRoot interface can be used to parse HTML input into a DocumentFragment, optionally filtering out unwanted elements and attributes, and then use it to replace the existing tree in the Shadow DOM.
3113731137
*
3113831138
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ShadowRoot/setHTMLUnsafe)
3113931139
*/
@@ -33294,7 +33294,7 @@ interface URLPattern {
3329433294
*/
3329533295
exec(input?: URLPatternInput, baseURL?: string | URL): URLPatternResult | null;
3329633296
/**
33297-
* The **`test()`** method of the URLPattern interface takes a URL or object of URL parts, and returns a boolean indicating if the given input matches the current pattern.
33297+
* The **`test()`** method of the URLPattern interface takes a URL string or object of URL parts, and returns a boolean indicating if the given input matches the current pattern.
3329833298
*
3329933299
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/URLPattern/test)
3330033300
*/

baselines/serviceworker.generated.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6396,7 +6396,7 @@ interface ReadableByteStreamController {
63966396
*/
63976397
close(): void;
63986398
/**
6399-
* The **`enqueue()`** method of the ReadableByteStreamController interface enqueues a given chunk on the associated readable byte stream (the chunk is copied into the stream's internal queues).
6399+
* The **`enqueue()`** method of the ReadableByteStreamController interface enqueues a given chunk on the associated readable byte stream (the chunk is transferred into the stream's internal queues).
64006400
*
64016401
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableByteStreamController/enqueue)
64026402
*/
@@ -7852,7 +7852,7 @@ interface URLPattern {
78527852
*/
78537853
exec(input?: URLPatternInput, baseURL?: string | URL): URLPatternResult | null;
78547854
/**
7855-
* The **`test()`** method of the URLPattern interface takes a URL or object of URL parts, and returns a boolean indicating if the given input matches the current pattern.
7855+
* The **`test()`** method of the URLPattern interface takes a URL string or object of URL parts, and returns a boolean indicating if the given input matches the current pattern.
78567856
*
78577857
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/URLPattern/test)
78587858
*/

baselines/sharedworker.generated.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5979,7 +5979,7 @@ interface ReadableByteStreamController {
59795979
*/
59805980
close(): void;
59815981
/**
5982-
* The **`enqueue()`** method of the ReadableByteStreamController interface enqueues a given chunk on the associated readable byte stream (the chunk is copied into the stream's internal queues).
5982+
* The **`enqueue()`** method of the ReadableByteStreamController interface enqueues a given chunk on the associated readable byte stream (the chunk is transferred into the stream's internal queues).
59835983
*
59845984
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableByteStreamController/enqueue)
59855985
*/
@@ -7395,7 +7395,7 @@ interface URLPattern {
73957395
*/
73967396
exec(input?: URLPatternInput, baseURL?: string | URL): URLPatternResult | null;
73977397
/**
7398-
* The **`test()`** method of the URLPattern interface takes a URL or object of URL parts, and returns a boolean indicating if the given input matches the current pattern.
7398+
* The **`test()`** method of the URLPattern interface takes a URL string or object of URL parts, and returns a boolean indicating if the given input matches the current pattern.
73997399
*
74007400
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/URLPattern/test)
74017401
*/

baselines/ts5.5/audioworklet.generated.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -870,7 +870,7 @@ interface ReadableByteStreamController {
870870
*/
871871
close(): void;
872872
/**
873-
* The **`enqueue()`** method of the ReadableByteStreamController interface enqueues a given chunk on the associated readable byte stream (the chunk is copied into the stream's internal queues).
873+
* The **`enqueue()`** method of the ReadableByteStreamController interface enqueues a given chunk on the associated readable byte stream (the chunk is transferred into the stream's internal queues).
874874
*
875875
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableByteStreamController/enqueue)
876876
*/

baselines/ts5.5/dom.generated.d.ts

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -10685,7 +10685,7 @@ declare var Document: {
1068510685
prototype: Document;
1068610686
new(): Document;
1068710687
/**
10688-
* The **`parseHTMLUnsafe()`** static method of the Document object is used to parse an HTML input, optionally filtering unwanted HTML elements and attributes, in order to create a new Document instance.
10688+
* The **`parseHTMLUnsafe()`** static method of the Document object is used to parse HTML input, optionally filtering unwanted HTML elements and attributes, in order to create a new Document instance.
1068910689
*
1069010690
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/parseHTMLUnsafe_static)
1069110691
*/
@@ -11357,7 +11357,7 @@ interface Element extends Node, ARIAMixin, Animatable, ChildNode, NonDocumentTyp
1135711357
*/
1135811358
setAttributeNodeNS(attr: Attr): Attr | null;
1135911359
/**
11360-
* The **`setHTMLUnsafe()`** method of the Element interface is used to parse a string of HTML into a DocumentFragment, optionally filtering out unwanted elements and attributes, and those that don't belong in the context, and then using it to replace the element's subtree in the DOM.
11360+
* The **`setHTMLUnsafe()`** method of the Element interface is used to parse HTML input into a DocumentFragment, optionally filtering out unwanted elements and attributes, and those that don't belong in the context, and then using it to replace the element's subtree in the DOM.
1136111361
*
1136211362
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/setHTMLUnsafe)
1136311363
*/
@@ -15282,7 +15282,7 @@ interface HTMLInputElement extends HTMLElement, PopoverTargetAttributes {
1528215282
*/
1528315283
readonly webkitEntries: ReadonlyArray<FileSystemEntry>;
1528415284
/**
15285-
* The **`webkitdirectory`** property of the HTMLInputElement interface reflects the `webkitdirectory` HTML attribute, which indicates that `<input type='file'>` elements should let the user select directories instead of files.
15285+
* The **`webkitdirectory`** property of the HTMLInputElement interface reflects the `webkitdirectory` HTML attribute, which indicates that `<input type='file'>` elements can only select directories instead of files.
1528615286
*
1528715287
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/webkitdirectory)
1528815288
*/
@@ -18138,7 +18138,7 @@ declare var Headers: {
1813818138
*/
1813918139
interface Highlight {
1814018140
/**
18141-
* It is possible to create Range objects that overlap in a document.
18141+
* The `priority` property of the Highlight interface is a number used to determine which highlight's styles should be used to resolve style conflicts in overlapping parts.
1814218142
*
1814318143
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Highlight/priority)
1814418144
*/
@@ -25562,7 +25562,7 @@ declare var RTCPeerConnectionIceEvent: {
2556225562
*/
2556325563
interface RTCRtpReceiver {
2556425564
/**
25565-
* The **`jitterBufferTarget`** property of the RTCRtpReceiver interface is a DOMHighResTimeStamp that indicates the application's preferred duration, in milliseconds, for which the jitter buffer should hold media before playing it out.
25565+
* The **`jitterBufferTarget`** property of the RTCRtpReceiver interface is a DOMHighResTimeStamp that indicates the application's preferred duration, in milliseconds, for which the jitter should hold media before playing it out.
2556625566
*
2556725567
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCRtpReceiver/jitterBufferTarget)
2556825568
*/
@@ -26102,7 +26102,7 @@ interface ReadableByteStreamController {
2610226102
*/
2610326103
close(): void;
2610426104
/**
26105-
* The **`enqueue()`** method of the ReadableByteStreamController interface enqueues a given chunk on the associated readable byte stream (the chunk is copied into the stream's internal queues).
26105+
* The **`enqueue()`** method of the ReadableByteStreamController interface enqueues a given chunk on the associated readable byte stream (the chunk is transferred into the stream's internal queues).
2610626106
*
2610726107
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableByteStreamController/enqueue)
2610826108
*/
@@ -31111,7 +31111,7 @@ interface ShadowRoot extends DocumentFragment, DocumentOrShadowRoot {
3111131111
*/
3111231112
getHTML(options?: GetHTMLOptions): string;
3111331113
/**
31114-
* The **`setHTMLUnsafe()`** method of the ShadowRoot interface can be used to parse a string of HTML into a DocumentFragment, optionally filtering out unwanted elements and attributes, and then use it to replace the existing tree in the Shadow DOM.
31114+
* The **`setHTMLUnsafe()`** method of the ShadowRoot interface can be used to parse HTML input into a DocumentFragment, optionally filtering out unwanted elements and attributes, and then use it to replace the existing tree in the Shadow DOM.
3111531115
*
3111631116
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ShadowRoot/setHTMLUnsafe)
3111731117
*/
@@ -33271,7 +33271,7 @@ interface URLPattern {
3327133271
*/
3327233272
exec(input?: URLPatternInput, baseURL?: string | URL): URLPatternResult | null;
3327333273
/**
33274-
* The **`test()`** method of the URLPattern interface takes a URL or object of URL parts, and returns a boolean indicating if the given input matches the current pattern.
33274+
* The **`test()`** method of the URLPattern interface takes a URL string or object of URL parts, and returns a boolean indicating if the given input matches the current pattern.
3327533275
*
3327633276
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/URLPattern/test)
3327733277
*/

baselines/ts5.5/serviceworker.generated.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6396,7 +6396,7 @@ interface ReadableByteStreamController {
63966396
*/
63976397
close(): void;
63986398
/**
6399-
* The **`enqueue()`** method of the ReadableByteStreamController interface enqueues a given chunk on the associated readable byte stream (the chunk is copied into the stream's internal queues).
6399+
* The **`enqueue()`** method of the ReadableByteStreamController interface enqueues a given chunk on the associated readable byte stream (the chunk is transferred into the stream's internal queues).
64006400
*
64016401
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableByteStreamController/enqueue)
64026402
*/
@@ -7852,7 +7852,7 @@ interface URLPattern {
78527852
*/
78537853
exec(input?: URLPatternInput, baseURL?: string | URL): URLPatternResult | null;
78547854
/**
7855-
* The **`test()`** method of the URLPattern interface takes a URL or object of URL parts, and returns a boolean indicating if the given input matches the current pattern.
7855+
* The **`test()`** method of the URLPattern interface takes a URL string or object of URL parts, and returns a boolean indicating if the given input matches the current pattern.
78567856
*
78577857
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/URLPattern/test)
78587858
*/

baselines/ts5.5/sharedworker.generated.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5979,7 +5979,7 @@ interface ReadableByteStreamController {
59795979
*/
59805980
close(): void;
59815981
/**
5982-
* The **`enqueue()`** method of the ReadableByteStreamController interface enqueues a given chunk on the associated readable byte stream (the chunk is copied into the stream's internal queues).
5982+
* The **`enqueue()`** method of the ReadableByteStreamController interface enqueues a given chunk on the associated readable byte stream (the chunk is transferred into the stream's internal queues).
59835983
*
59845984
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableByteStreamController/enqueue)
59855985
*/
@@ -7395,7 +7395,7 @@ interface URLPattern {
73957395
*/
73967396
exec(input?: URLPatternInput, baseURL?: string | URL): URLPatternResult | null;
73977397
/**
7398-
* The **`test()`** method of the URLPattern interface takes a URL or object of URL parts, and returns a boolean indicating if the given input matches the current pattern.
7398+
* The **`test()`** method of the URLPattern interface takes a URL string or object of URL parts, and returns a boolean indicating if the given input matches the current pattern.
73997399
*
74007400
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/URLPattern/test)
74017401
*/

baselines/ts5.5/webworker.generated.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7498,7 +7498,7 @@ interface ReadableByteStreamController {
74987498
*/
74997499
close(): void;
75007500
/**
7501-
* The **`enqueue()`** method of the ReadableByteStreamController interface enqueues a given chunk on the associated readable byte stream (the chunk is copied into the stream's internal queues).
7501+
* The **`enqueue()`** method of the ReadableByteStreamController interface enqueues a given chunk on the associated readable byte stream (the chunk is transferred into the stream's internal queues).
75027502
*
75037503
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableByteStreamController/enqueue)
75047504
*/
@@ -9001,7 +9001,7 @@ interface URLPattern {
90019001
*/
90029002
exec(input?: URLPatternInput, baseURL?: string | URL): URLPatternResult | null;
90039003
/**
9004-
* The **`test()`** method of the URLPattern interface takes a URL or object of URL parts, and returns a boolean indicating if the given input matches the current pattern.
9004+
* The **`test()`** method of the URLPattern interface takes a URL string or object of URL parts, and returns a boolean indicating if the given input matches the current pattern.
90059005
*
90069006
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/URLPattern/test)
90079007
*/

baselines/ts5.6/audioworklet.generated.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -870,7 +870,7 @@ interface ReadableByteStreamController {
870870
*/
871871
close(): void;
872872
/**
873-
* The **`enqueue()`** method of the ReadableByteStreamController interface enqueues a given chunk on the associated readable byte stream (the chunk is copied into the stream's internal queues).
873+
* The **`enqueue()`** method of the ReadableByteStreamController interface enqueues a given chunk on the associated readable byte stream (the chunk is transferred into the stream's internal queues).
874874
*
875875
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableByteStreamController/enqueue)
876876
*/

0 commit comments

Comments
 (0)