@types/web 0.0.342 → 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.342 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Fweb%400.0.342.
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
@@ -8000,7 +8000,7 @@ interface CSSStyleProperties extends CSSStyleDeclarationBase {
8000
8000
  */
8001
8001
  left: string;
8002
8002
  /**
8003
- * The letter-spacing CSS property sets the horizontal spacing behavior between text characters. This value is added to the natural spacing between characters while rendering the text. Positive values of letter-spacing causes characters to spread farther apart, while negative values of letter-spacing bring characters closer together.
8003
+ * The letter-spacing CSS property sets the spacing between text characters. This value is added to the natural spacing between characters while rendering the text. Positive values of letter-spacing spread characters further apart, while negative values of letter-spacing bring characters closer together.
8004
8004
  *
8005
8005
  * [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/letter-spacing)
8006
8006
  */
@@ -9765,7 +9765,7 @@ interface CSSStyleProperties extends CSSStyleDeclarationBase {
9765
9765
  */
9766
9766
  wordBreak: string;
9767
9767
  /**
9768
- * The word-spacing CSS property sets the length of space between words and between tags.
9768
+ * The word-spacing CSS property sets the spacing between words and between tags.
9769
9769
  *
9770
9770
  * [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/word-spacing)
9771
9771
  */
@@ -34717,7 +34717,7 @@ interface Sanitizer {
34717
34717
  */
34718
34718
  removeElement(element: SanitizerElement): boolean;
34719
34719
  /**
34720
- * The **`removeUnsafe()`** method of the Sanitizer interface configures the sanitizer configuration so that it will remove all elements, attributes, and event handler content attributes that are considered XSS-unsafe by the browser.
34720
+ * The **`removeUnsafe()`** method of the Sanitizer interface configures the sanitizer so that it will remove all elements and attributes that are considered XSS-unsafe by the browser.
34721
34721
  *
34722
34722
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Sanitizer/removeUnsafe)
34723
34723
  */
@@ -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.342",
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
@@ -7990,7 +7990,7 @@ interface CSSStyleProperties extends CSSStyleDeclarationBase {
7990
7990
  */
7991
7991
  left: string;
7992
7992
  /**
7993
- * The letter-spacing CSS property sets the horizontal spacing behavior between text characters. This value is added to the natural spacing between characters while rendering the text. Positive values of letter-spacing causes characters to spread farther apart, while negative values of letter-spacing bring characters closer together.
7993
+ * The letter-spacing CSS property sets the spacing between text characters. This value is added to the natural spacing between characters while rendering the text. Positive values of letter-spacing spread characters further apart, while negative values of letter-spacing bring characters closer together.
7994
7994
  *
7995
7995
  * [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/letter-spacing)
7996
7996
  */
@@ -9755,7 +9755,7 @@ interface CSSStyleProperties extends CSSStyleDeclarationBase {
9755
9755
  */
9756
9756
  wordBreak: string;
9757
9757
  /**
9758
- * The word-spacing CSS property sets the length of space between words and between tags.
9758
+ * The word-spacing CSS property sets the spacing between words and between tags.
9759
9759
  *
9760
9760
  * [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/word-spacing)
9761
9761
  */
@@ -34692,7 +34692,7 @@ interface Sanitizer {
34692
34692
  */
34693
34693
  removeElement(element: SanitizerElement): boolean;
34694
34694
  /**
34695
- * The **`removeUnsafe()`** method of the Sanitizer interface configures the sanitizer configuration so that it will remove all elements, attributes, and event handler content attributes that are considered XSS-unsafe by the browser.
34695
+ * The **`removeUnsafe()`** method of the Sanitizer interface configures the sanitizer so that it will remove all elements and attributes that are considered XSS-unsafe by the browser.
34696
34696
  *
34697
34697
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Sanitizer/removeUnsafe)
34698
34698
  */
@@ -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
@@ -7997,7 +7997,7 @@ interface CSSStyleProperties extends CSSStyleDeclarationBase {
7997
7997
  */
7998
7998
  left: string;
7999
7999
  /**
8000
- * The letter-spacing CSS property sets the horizontal spacing behavior between text characters. This value is added to the natural spacing between characters while rendering the text. Positive values of letter-spacing causes characters to spread farther apart, while negative values of letter-spacing bring characters closer together.
8000
+ * The letter-spacing CSS property sets the spacing between text characters. This value is added to the natural spacing between characters while rendering the text. Positive values of letter-spacing spread characters further apart, while negative values of letter-spacing bring characters closer together.
8001
8001
  *
8002
8002
  * [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/letter-spacing)
8003
8003
  */
@@ -9762,7 +9762,7 @@ interface CSSStyleProperties extends CSSStyleDeclarationBase {
9762
9762
  */
9763
9763
  wordBreak: string;
9764
9764
  /**
9765
- * The word-spacing CSS property sets the length of space between words and between tags.
9765
+ * The word-spacing CSS property sets the spacing between words and between tags.
9766
9766
  *
9767
9767
  * [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/word-spacing)
9768
9768
  */
@@ -34714,7 +34714,7 @@ interface Sanitizer {
34714
34714
  */
34715
34715
  removeElement(element: SanitizerElement): boolean;
34716
34716
  /**
34717
- * The **`removeUnsafe()`** method of the Sanitizer interface configures the sanitizer configuration so that it will remove all elements, attributes, and event handler content attributes that are considered XSS-unsafe by the browser.
34717
+ * The **`removeUnsafe()`** method of the Sanitizer interface configures the sanitizer so that it will remove all elements and attributes that are considered XSS-unsafe by the browser.
34718
34718
  *
34719
34719
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Sanitizer/removeUnsafe)
34720
34720
  */
@@ -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
@@ -7997,7 +7997,7 @@ interface CSSStyleProperties extends CSSStyleDeclarationBase {
7997
7997
  */
7998
7998
  left: string;
7999
7999
  /**
8000
- * The letter-spacing CSS property sets the horizontal spacing behavior between text characters. This value is added to the natural spacing between characters while rendering the text. Positive values of letter-spacing causes characters to spread farther apart, while negative values of letter-spacing bring characters closer together.
8000
+ * The letter-spacing CSS property sets the spacing between text characters. This value is added to the natural spacing between characters while rendering the text. Positive values of letter-spacing spread characters further apart, while negative values of letter-spacing bring characters closer together.
8001
8001
  *
8002
8002
  * [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/letter-spacing)
8003
8003
  */
@@ -9762,7 +9762,7 @@ interface CSSStyleProperties extends CSSStyleDeclarationBase {
9762
9762
  */
9763
9763
  wordBreak: string;
9764
9764
  /**
9765
- * The word-spacing CSS property sets the length of space between words and between tags.
9765
+ * The word-spacing CSS property sets the spacing between words and between tags.
9766
9766
  *
9767
9767
  * [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/word-spacing)
9768
9768
  */
@@ -34714,7 +34714,7 @@ interface Sanitizer {
34714
34714
  */
34715
34715
  removeElement(element: SanitizerElement): boolean;
34716
34716
  /**
34717
- * The **`removeUnsafe()`** method of the Sanitizer interface configures the sanitizer configuration so that it will remove all elements, attributes, and event handler content attributes that are considered XSS-unsafe by the browser.
34717
+ * The **`removeUnsafe()`** method of the Sanitizer interface configures the sanitizer so that it will remove all elements and attributes that are considered XSS-unsafe by the browser.
34718
34718
  *
34719
34719
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Sanitizer/removeUnsafe)
34720
34720
  */
@@ -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: {