@types/sharedworker 0.0.163 → 0.0.165

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
@@ -28,4 +28,4 @@ This project does not respect semantic versioning as almost every change could p
28
28
 
29
29
  ## Deploy Metadata
30
30
 
31
- You can read what changed in version 0.0.163 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Fsharedworker%400.0.163.
31
+ You can read what changed in version 0.0.165 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Fsharedworker%400.0.165.
package/index.d.ts CHANGED
@@ -1050,7 +1050,7 @@ declare var CSSMathClamp: {
1050
1050
  };
1051
1051
 
1052
1052
  /**
1053
- * The **`CSSMathInvert`** interface of the CSS Typed Object Model API represents a CSS calc used as `calc(1 / <value>).` It inherits properties and methods from its parent CSSNumericValue.
1053
+ * The **`CSSMathInvert`** interface of the CSS Typed Object Model API represents a CSS calc used as `calc(1 / <value>)`.
1054
1054
  *
1055
1055
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSMathInvert)
1056
1056
  */
@@ -5718,7 +5718,7 @@ declare var Permissions: {
5718
5718
  };
5719
5719
 
5720
5720
  /**
5721
- * The **`ProgressEvent`** interface represents events measuring progress of an underlying process, like an HTTP request (for an `XMLHttpRequest`, or the loading of the underlying resource of an img, audio, video, style or link).
5721
+ * The **`ProgressEvent`** interface represents events that measure the progress of an underlying process, like an HTTP request (e.g., an `XMLHttpRequest`, or the loading of the underlying resource of an img, audio, video, style or link).
5722
5722
  *
5723
5723
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ProgressEvent)
5724
5724
  */
@@ -5730,14 +5730,14 @@ interface ProgressEvent<T extends EventTarget = EventTarget> extends Event {
5730
5730
  */
5731
5731
  readonly lengthComputable: boolean;
5732
5732
  /**
5733
- * The **`ProgressEvent.loaded`** read-only property is a 64-bit unsigned integer indicating the size, in bytes, of the data already transmitted or processed.
5733
+ * The **`ProgressEvent.loaded`** read-only property is a number indicating the size of the data already transmitted or processed.
5734
5734
  *
5735
5735
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ProgressEvent/loaded)
5736
5736
  */
5737
5737
  readonly loaded: number;
5738
5738
  readonly target: T | null;
5739
5739
  /**
5740
- * The **`ProgressEvent.total`** read-only property is a 64-bit unsigned integer indicating the total size, in bytes, of the data being transmitted or processed.
5740
+ * The **`ProgressEvent.total`** read-only property is a number indicating the total size of the data being transmitted or processed.
5741
5741
  *
5742
5742
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ProgressEvent/total)
5743
5743
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/sharedworker",
3
- "version": "0.0.163",
3
+ "version": "0.0.165",
4
4
  "description": "Types for the global scope of Shared Workers",
5
5
  "license": "Apache-2.0",
6
6
  "contributors": [],
package/ts5.5/index.d.ts CHANGED
@@ -1050,7 +1050,7 @@ declare var CSSMathClamp: {
1050
1050
  };
1051
1051
 
1052
1052
  /**
1053
- * The **`CSSMathInvert`** interface of the CSS Typed Object Model API represents a CSS calc used as `calc(1 / <value>).` It inherits properties and methods from its parent CSSNumericValue.
1053
+ * The **`CSSMathInvert`** interface of the CSS Typed Object Model API represents a CSS calc used as `calc(1 / <value>)`.
1054
1054
  *
1055
1055
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSMathInvert)
1056
1056
  */
@@ -5718,7 +5718,7 @@ declare var Permissions: {
5718
5718
  };
5719
5719
 
5720
5720
  /**
5721
- * The **`ProgressEvent`** interface represents events measuring progress of an underlying process, like an HTTP request (for an `XMLHttpRequest`, or the loading of the underlying resource of an img, audio, video, style or link).
5721
+ * The **`ProgressEvent`** interface represents events that measure the progress of an underlying process, like an HTTP request (e.g., an `XMLHttpRequest`, or the loading of the underlying resource of an img, audio, video, style or link).
5722
5722
  *
5723
5723
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ProgressEvent)
5724
5724
  */
@@ -5730,14 +5730,14 @@ interface ProgressEvent<T extends EventTarget = EventTarget> extends Event {
5730
5730
  */
5731
5731
  readonly lengthComputable: boolean;
5732
5732
  /**
5733
- * The **`ProgressEvent.loaded`** read-only property is a 64-bit unsigned integer indicating the size, in bytes, of the data already transmitted or processed.
5733
+ * The **`ProgressEvent.loaded`** read-only property is a number indicating the size of the data already transmitted or processed.
5734
5734
  *
5735
5735
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ProgressEvent/loaded)
5736
5736
  */
5737
5737
  readonly loaded: number;
5738
5738
  readonly target: T | null;
5739
5739
  /**
5740
- * The **`ProgressEvent.total`** read-only property is a 64-bit unsigned integer indicating the total size, in bytes, of the data being transmitted or processed.
5740
+ * The **`ProgressEvent.total`** read-only property is a number indicating the total size of the data being transmitted or processed.
5741
5741
  *
5742
5742
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ProgressEvent/total)
5743
5743
  */
package/ts5.6/index.d.ts CHANGED
@@ -1050,7 +1050,7 @@ declare var CSSMathClamp: {
1050
1050
  };
1051
1051
 
1052
1052
  /**
1053
- * The **`CSSMathInvert`** interface of the CSS Typed Object Model API represents a CSS calc used as `calc(1 / <value>).` It inherits properties and methods from its parent CSSNumericValue.
1053
+ * The **`CSSMathInvert`** interface of the CSS Typed Object Model API represents a CSS calc used as `calc(1 / <value>)`.
1054
1054
  *
1055
1055
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSMathInvert)
1056
1056
  */
@@ -5718,7 +5718,7 @@ declare var Permissions: {
5718
5718
  };
5719
5719
 
5720
5720
  /**
5721
- * The **`ProgressEvent`** interface represents events measuring progress of an underlying process, like an HTTP request (for an `XMLHttpRequest`, or the loading of the underlying resource of an img, audio, video, style or link).
5721
+ * The **`ProgressEvent`** interface represents events that measure the progress of an underlying process, like an HTTP request (e.g., an `XMLHttpRequest`, or the loading of the underlying resource of an img, audio, video, style or link).
5722
5722
  *
5723
5723
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ProgressEvent)
5724
5724
  */
@@ -5730,14 +5730,14 @@ interface ProgressEvent<T extends EventTarget = EventTarget> extends Event {
5730
5730
  */
5731
5731
  readonly lengthComputable: boolean;
5732
5732
  /**
5733
- * The **`ProgressEvent.loaded`** read-only property is a 64-bit unsigned integer indicating the size, in bytes, of the data already transmitted or processed.
5733
+ * The **`ProgressEvent.loaded`** read-only property is a number indicating the size of the data already transmitted or processed.
5734
5734
  *
5735
5735
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ProgressEvent/loaded)
5736
5736
  */
5737
5737
  readonly loaded: number;
5738
5738
  readonly target: T | null;
5739
5739
  /**
5740
- * The **`ProgressEvent.total`** read-only property is a 64-bit unsigned integer indicating the total size, in bytes, of the data being transmitted or processed.
5740
+ * The **`ProgressEvent.total`** read-only property is a number indicating the total size of the data being transmitted or processed.
5741
5741
  *
5742
5742
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ProgressEvent/total)
5743
5743
  */