@types/webworker 0.0.72 → 0.0.73

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
@@ -45,4 +45,4 @@ This project does not respect semantic versioning as almost every change could p
45
45
 
46
46
  ## Deploy Metadata
47
47
 
48
- You can read what changed in version 0.0.72 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Fwebworker%400.0.72.
48
+ You can read what changed in version 0.0.73 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Fwebworker%400.0.73.
package/index.d.ts CHANGED
@@ -10474,7 +10474,7 @@ interface TransformStreamDefaultController<O = any> {
10474
10474
  *
10475
10475
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TransformStreamDefaultController/enqueue)
10476
10476
  */
10477
- enqueue(chunk?: O): void;
10477
+ enqueue(chunk: O): void;
10478
10478
  /**
10479
10479
  * 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.
10480
10480
  *
@@ -14257,7 +14257,7 @@ interface WritableStreamDefaultWriter<W = any> {
14257
14257
  *
14258
14258
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WritableStreamDefaultWriter/write)
14259
14259
  */
14260
- write(chunk?: W): Promise<void>;
14260
+ write(chunk: W): Promise<void>;
14261
14261
  }
14262
14262
 
14263
14263
  declare var WritableStreamDefaultWriter: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/webworker",
3
- "version": "0.0.72",
3
+ "version": "0.0.73",
4
4
  "description": "Types for the global scope of Web Workers",
5
5
  "license": "Apache-2.0",
6
6
  "contributors": [],
package/ts5.5/index.d.ts CHANGED
@@ -10471,7 +10471,7 @@ interface TransformStreamDefaultController<O = any> {
10471
10471
  *
10472
10472
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TransformStreamDefaultController/enqueue)
10473
10473
  */
10474
- enqueue(chunk?: O): void;
10474
+ enqueue(chunk: O): void;
10475
10475
  /**
10476
10476
  * 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.
10477
10477
  *
@@ -14254,7 +14254,7 @@ interface WritableStreamDefaultWriter<W = any> {
14254
14254
  *
14255
14255
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WritableStreamDefaultWriter/write)
14256
14256
  */
14257
- write(chunk?: W): Promise<void>;
14257
+ write(chunk: W): Promise<void>;
14258
14258
  }
14259
14259
 
14260
14260
  declare var WritableStreamDefaultWriter: {
package/ts5.6/index.d.ts CHANGED
@@ -10471,7 +10471,7 @@ interface TransformStreamDefaultController<O = any> {
10471
10471
  *
10472
10472
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TransformStreamDefaultController/enqueue)
10473
10473
  */
10474
- enqueue(chunk?: O): void;
10474
+ enqueue(chunk: O): void;
10475
10475
  /**
10476
10476
  * 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.
10477
10477
  *
@@ -14254,7 +14254,7 @@ interface WritableStreamDefaultWriter<W = any> {
14254
14254
  *
14255
14255
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WritableStreamDefaultWriter/write)
14256
14256
  */
14257
- write(chunk?: W): Promise<void>;
14257
+ write(chunk: W): Promise<void>;
14258
14258
  }
14259
14259
 
14260
14260
  declare var WritableStreamDefaultWriter: {
package/ts5.9/index.d.ts CHANGED
@@ -10471,7 +10471,7 @@ interface TransformStreamDefaultController<O = any> {
10471
10471
  *
10472
10472
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TransformStreamDefaultController/enqueue)
10473
10473
  */
10474
- enqueue(chunk?: O): void;
10474
+ enqueue(chunk: O): void;
10475
10475
  /**
10476
10476
  * 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.
10477
10477
  *
@@ -14254,7 +14254,7 @@ interface WritableStreamDefaultWriter<W = any> {
14254
14254
  *
14255
14255
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WritableStreamDefaultWriter/write)
14256
14256
  */
14257
- write(chunk?: W): Promise<void>;
14257
+ write(chunk: W): Promise<void>;
14258
14258
  }
14259
14259
 
14260
14260
  declare var WritableStreamDefaultWriter: {