@types/web 0.0.343 → 0.0.344

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -47,4 +47,4 @@ Prior to `@types/web` the web APIs were deployed with a version of TypeScript, a
47
47
 
48
48
  ## Deploy Metadata
49
49
 
50
- You can read what changed in version 0.0.343 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Fweb%400.0.343.
50
+ You can read what changed in version 0.0.344 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Fweb%400.0.344.
package/index.d.ts CHANGED
@@ -37253,7 +37253,7 @@ interface TransformStreamDefaultController<O = any> {
37253
37253
  *
37254
37254
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TransformStreamDefaultController/enqueue)
37255
37255
  */
37256
- enqueue(chunk?: O): void;
37256
+ enqueue(chunk: O): void;
37257
37257
  /**
37258
37258
  * 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.
37259
37259
  *
@@ -42097,7 +42097,7 @@ interface WritableStreamDefaultWriter<W = any> {
42097
42097
  *
42098
42098
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WritableStreamDefaultWriter/write)
42099
42099
  */
42100
- write(chunk?: W): Promise<void>;
42100
+ write(chunk: W): Promise<void>;
42101
42101
  }
42102
42102
 
42103
42103
  declare var WritableStreamDefaultWriter: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/web",
3
- "version": "0.0.343",
3
+ "version": "0.0.344",
4
4
  "description": "Types for the DOM, and other web technologies in browsers",
5
5
  "license": "Apache-2.0",
6
6
  "contributors": [],
package/ts5.5/index.d.ts CHANGED
@@ -37227,7 +37227,7 @@ interface TransformStreamDefaultController<O = any> {
37227
37227
  *
37228
37228
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TransformStreamDefaultController/enqueue)
37229
37229
  */
37230
- enqueue(chunk?: O): void;
37230
+ enqueue(chunk: O): void;
37231
37231
  /**
37232
37232
  * 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.
37233
37233
  *
@@ -42071,7 +42071,7 @@ interface WritableStreamDefaultWriter<W = any> {
42071
42071
  *
42072
42072
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WritableStreamDefaultWriter/write)
42073
42073
  */
42074
- write(chunk?: W): Promise<void>;
42074
+ write(chunk: W): Promise<void>;
42075
42075
  }
42076
42076
 
42077
42077
  declare var WritableStreamDefaultWriter: {
package/ts5.6/index.d.ts CHANGED
@@ -37250,7 +37250,7 @@ interface TransformStreamDefaultController<O = any> {
37250
37250
  *
37251
37251
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TransformStreamDefaultController/enqueue)
37252
37252
  */
37253
- enqueue(chunk?: O): void;
37253
+ enqueue(chunk: O): void;
37254
37254
  /**
37255
37255
  * 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.
37256
37256
  *
@@ -42094,7 +42094,7 @@ interface WritableStreamDefaultWriter<W = any> {
42094
42094
  *
42095
42095
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WritableStreamDefaultWriter/write)
42096
42096
  */
42097
- write(chunk?: W): Promise<void>;
42097
+ write(chunk: W): Promise<void>;
42098
42098
  }
42099
42099
 
42100
42100
  declare var WritableStreamDefaultWriter: {
package/ts5.9/index.d.ts CHANGED
@@ -37250,7 +37250,7 @@ interface TransformStreamDefaultController<O = any> {
37250
37250
  *
37251
37251
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TransformStreamDefaultController/enqueue)
37252
37252
  */
37253
- enqueue(chunk?: O): void;
37253
+ enqueue(chunk: O): void;
37254
37254
  /**
37255
37255
  * 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.
37256
37256
  *
@@ -42094,7 +42094,7 @@ interface WritableStreamDefaultWriter<W = any> {
42094
42094
  *
42095
42095
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WritableStreamDefaultWriter/write)
42096
42096
  */
42097
- write(chunk?: W): Promise<void>;
42097
+ write(chunk: W): Promise<void>;
42098
42098
  }
42099
42099
 
42100
42100
  declare var WritableStreamDefaultWriter: {