Skip to content

Commit 635fe69

Browse files
committed
Make chunk param of TransformStreamDefaultController.enqueue non-optional
1 parent f977eac commit 635fe69

21 files changed

+21
-20
lines changed

baselines/audioworklet.generated.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1227,7 +1227,7 @@ interface TransformStreamDefaultController<O = any> {
12271227
*
12281228
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/TransformStreamDefaultController/enqueue)
12291229
*/
1230-
enqueue(chunk?: O): void;
1230+
enqueue(chunk: O): void;
12311231
/**
12321232
* The **`error()`** method of the TransformStreamDefaultController interface errors both sides of the stream. Any further interactions with it will fail with the given error message, and any chunks in the queue will be discarded.
12331233
*

baselines/dom.generated.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37250,7 +37250,7 @@ interface TransformStreamDefaultController<O = any> {
3725037250
*
3725137251
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/TransformStreamDefaultController/enqueue)
3725237252
*/
37253-
enqueue(chunk?: O): void;
37253+
enqueue(chunk: O): void;
3725437254
/**
3725537255
* The **`error()`** method of the TransformStreamDefaultController interface errors both sides of the stream. Any further interactions with it will fail with the given error message, and any chunks in the queue will be discarded.
3725637256
*

baselines/serviceworker.generated.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9313,7 +9313,7 @@ interface TransformStreamDefaultController<O = any> {
93139313
*
93149314
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/TransformStreamDefaultController/enqueue)
93159315
*/
9316-
enqueue(chunk?: O): void;
9316+
enqueue(chunk: O): void;
93179317
/**
93189318
* The **`error()`** method of the TransformStreamDefaultController interface errors both sides of the stream. Any further interactions with it will fail with the given error message, and any chunks in the queue will be discarded.
93199319
*

baselines/sharedworker.generated.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8844,7 +8844,7 @@ interface TransformStreamDefaultController<O = any> {
88448844
*
88458845
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/TransformStreamDefaultController/enqueue)
88468846
*/
8847-
enqueue(chunk?: O): void;
8847+
enqueue(chunk: O): void;
88488848
/**
88498849
* The **`error()`** method of the TransformStreamDefaultController interface errors both sides of the stream. Any further interactions with it will fail with the given error message, and any chunks in the queue will be discarded.
88508850
*

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1224,7 +1224,7 @@ interface TransformStreamDefaultController<O = any> {
12241224
*
12251225
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/TransformStreamDefaultController/enqueue)
12261226
*/
1227-
enqueue(chunk?: O): void;
1227+
enqueue(chunk: O): void;
12281228
/**
12291229
* The **`error()`** method of the TransformStreamDefaultController interface errors both sides of the stream. Any further interactions with it will fail with the given error message, and any chunks in the queue will be discarded.
12301230
*

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37224,7 +37224,7 @@ interface TransformStreamDefaultController<O = any> {
3722437224
*
3722537225
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/TransformStreamDefaultController/enqueue)
3722637226
*/
37227-
enqueue(chunk?: O): void;
37227+
enqueue(chunk: O): void;
3722837228
/**
3722937229
* The **`error()`** method of the TransformStreamDefaultController interface errors both sides of the stream. Any further interactions with it will fail with the given error message, and any chunks in the queue will be discarded.
3723037230
*

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9310,7 +9310,7 @@ interface TransformStreamDefaultController<O = any> {
93109310
*
93119311
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/TransformStreamDefaultController/enqueue)
93129312
*/
9313-
enqueue(chunk?: O): void;
9313+
enqueue(chunk: O): void;
93149314
/**
93159315
* The **`error()`** method of the TransformStreamDefaultController interface errors both sides of the stream. Any further interactions with it will fail with the given error message, and any chunks in the queue will be discarded.
93169316
*

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8841,7 +8841,7 @@ interface TransformStreamDefaultController<O = any> {
88418841
*
88428842
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/TransformStreamDefaultController/enqueue)
88438843
*/
8844-
enqueue(chunk?: O): void;
8844+
enqueue(chunk: O): void;
88458845
/**
88468846
* The **`error()`** method of the TransformStreamDefaultController interface errors both sides of the stream. Any further interactions with it will fail with the given error message, and any chunks in the queue will be discarded.
88478847
*

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10468,7 +10468,7 @@ interface TransformStreamDefaultController<O = any> {
1046810468
*
1046910469
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/TransformStreamDefaultController/enqueue)
1047010470
*/
10471-
enqueue(chunk?: O): void;
10471+
enqueue(chunk: O): void;
1047210472
/**
1047310473
* The **`error()`** method of the TransformStreamDefaultController interface errors both sides of the stream. Any further interactions with it will fail with the given error message, and any chunks in the queue will be discarded.
1047410474
*

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1224,7 +1224,7 @@ interface TransformStreamDefaultController<O = any> {
12241224
*
12251225
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/TransformStreamDefaultController/enqueue)
12261226
*/
1227-
enqueue(chunk?: O): void;
1227+
enqueue(chunk: O): void;
12281228
/**
12291229
* The **`error()`** method of the TransformStreamDefaultController interface errors both sides of the stream. Any further interactions with it will fail with the given error message, and any chunks in the queue will be discarded.
12301230
*

0 commit comments

Comments
 (0)