Skip to content

Commit 7f85fed

Browse files
committed
-
1 parent 48b1420 commit 7f85fed

19 files changed

+34
-30
lines changed

baselines/dom.generated.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12378,7 +12378,7 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve
1237812378
*
1237912379
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/links)
1238012380
*/
12381-
readonly links: HTMLCollectionOf<HTMLAnchorElement | HTMLAreaElement>;
12381+
readonly links: HTMLCollectionOf<HTMLAnchorElement<HTMLAnchorElement, HTMLAreaElement>>;
1238212382
/**
1238312383
* The read-only **`location`** property of the Document interface returns a Location object, which contains information about the URL of the document and provides methods for changing that URL and loading another URL.
1238412384
*
@@ -39734,7 +39734,7 @@ interface WebTransport {
3973439734
*
3973539735
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransport/createUnidirectionalStream)
3973639736
*/
39737-
createUnidirectionalStream(options?: WebTransportSendStreamOptions): Promise<WritableStream>;
39737+
createUnidirectionalStream(options?: WebTransportSendStreamOptions): WritableStream<WritableStream>;
3973839738
}
3973939739

3974039740
declare var WebTransport: {

baselines/serviceworker.generated.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11062,7 +11062,7 @@ interface WebTransport {
1106211062
*
1106311063
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransport/createUnidirectionalStream)
1106411064
*/
11065-
createUnidirectionalStream(options?: WebTransportSendStreamOptions): Promise<WritableStream>;
11065+
createUnidirectionalStream(options?: WebTransportSendStreamOptions): WritableStream<WritableStream>;
1106611066
}
1106711067

1106811068
declare var WebTransport: {

baselines/sharedworker.generated.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10599,7 +10599,7 @@ interface WebTransport {
1059910599
*
1060010600
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransport/createUnidirectionalStream)
1060110601
*/
10602-
createUnidirectionalStream(options?: WebTransportSendStreamOptions): Promise<WritableStream>;
10602+
createUnidirectionalStream(options?: WebTransportSendStreamOptions): WritableStream<WritableStream>;
1060310603
}
1060410604

1060510605
declare var WebTransport: {

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12367,7 +12367,7 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve
1236712367
*
1236812368
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/links)
1236912369
*/
12370-
readonly links: HTMLCollectionOf<HTMLAnchorElement | HTMLAreaElement>;
12370+
readonly links: HTMLCollectionOf<HTMLAnchorElement<HTMLAnchorElement, HTMLAreaElement>>;
1237112371
/**
1237212372
* The read-only **`location`** property of the Document interface returns a Location object, which contains information about the URL of the document and provides methods for changing that URL and loading another URL.
1237312373
*
@@ -39708,7 +39708,7 @@ interface WebTransport {
3970839708
*
3970939709
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransport/createUnidirectionalStream)
3971039710
*/
39711-
createUnidirectionalStream(options?: WebTransportSendStreamOptions): Promise<WritableStream>;
39711+
createUnidirectionalStream(options?: WebTransportSendStreamOptions): WritableStream<WritableStream>;
3971239712
}
3971339713

3971439714
declare var WebTransport: {

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11059,7 +11059,7 @@ interface WebTransport {
1105911059
*
1106011060
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransport/createUnidirectionalStream)
1106111061
*/
11062-
createUnidirectionalStream(options?: WebTransportSendStreamOptions): Promise<WritableStream>;
11062+
createUnidirectionalStream(options?: WebTransportSendStreamOptions): WritableStream<WritableStream>;
1106311063
}
1106411064

1106511065
declare var WebTransport: {

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10596,7 +10596,7 @@ interface WebTransport {
1059610596
*
1059710597
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransport/createUnidirectionalStream)
1059810598
*/
10599-
createUnidirectionalStream(options?: WebTransportSendStreamOptions): Promise<WritableStream>;
10599+
createUnidirectionalStream(options?: WebTransportSendStreamOptions): WritableStream<WritableStream>;
1060010600
}
1060110601

1060210602
declare var WebTransport: {

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12513,7 +12513,7 @@ interface WebTransport {
1251312513
*
1251412514
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransport/createUnidirectionalStream)
1251512515
*/
12516-
createUnidirectionalStream(options?: WebTransportSendStreamOptions): Promise<WritableStream>;
12516+
createUnidirectionalStream(options?: WebTransportSendStreamOptions): WritableStream<WritableStream>;
1251712517
}
1251812518

1251912519
declare var WebTransport: {

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12375,7 +12375,7 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve
1237512375
*
1237612376
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/links)
1237712377
*/
12378-
readonly links: HTMLCollectionOf<HTMLAnchorElement | HTMLAreaElement>;
12378+
readonly links: HTMLCollectionOf<HTMLAnchorElement<HTMLAnchorElement, HTMLAreaElement>>;
1237912379
/**
1238012380
* The read-only **`location`** property of the Document interface returns a Location object, which contains information about the URL of the document and provides methods for changing that URL and loading another URL.
1238112381
*
@@ -39731,7 +39731,7 @@ interface WebTransport {
3973139731
*
3973239732
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransport/createUnidirectionalStream)
3973339733
*/
39734-
createUnidirectionalStream(options?: WebTransportSendStreamOptions): Promise<WritableStream>;
39734+
createUnidirectionalStream(options?: WebTransportSendStreamOptions): WritableStream<WritableStream>;
3973539735
}
3973639736

3973739737
declare var WebTransport: {

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11059,7 +11059,7 @@ interface WebTransport {
1105911059
*
1106011060
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransport/createUnidirectionalStream)
1106111061
*/
11062-
createUnidirectionalStream(options?: WebTransportSendStreamOptions): Promise<WritableStream>;
11062+
createUnidirectionalStream(options?: WebTransportSendStreamOptions): WritableStream<WritableStream>;
1106311063
}
1106411064

1106511065
declare var WebTransport: {

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10596,7 +10596,7 @@ interface WebTransport {
1059610596
*
1059710597
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransport/createUnidirectionalStream)
1059810598
*/
10599-
createUnidirectionalStream(options?: WebTransportSendStreamOptions): Promise<WritableStream>;
10599+
createUnidirectionalStream(options?: WebTransportSendStreamOptions): WritableStream<WritableStream>;
1060010600
}
1060110601

1060210602
declare var WebTransport: {

0 commit comments

Comments
 (0)