@types/web 0.0.240 → 0.0.242

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.240 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Fweb%400.0.240.
50
+ You can read what changed in version 0.0.242 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Fweb%400.0.242.
package/index.d.ts CHANGED
@@ -8659,7 +8659,7 @@ interface DOMImplementation {
8659
8659
  *
8660
8660
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMImplementation/createDocumentType)
8661
8661
  */
8662
- createDocumentType(qualifiedName: string, publicId: string, systemId: string): DocumentType;
8662
+ createDocumentType(name: string, publicId: string, systemId: string): DocumentType;
8663
8663
  /**
8664
8664
  * The **`DOMImplementation.createHTMLDocument()`** method creates a new HTML Document.
8665
8665
  *
@@ -29017,7 +29017,7 @@ declare var SVGPatternElement: {
29017
29017
  };
29018
29018
 
29019
29019
  /**
29020
- * The **`SVGPointList`** interface represents a list of SVGPoint objects.
29020
+ * The **`SVGPointList`** interface represents a list of DOMPoint objects.
29021
29021
  *
29022
29022
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPointList)
29023
29023
  */
@@ -29035,7 +29035,7 @@ interface SVGPointList {
29035
29035
  */
29036
29036
  readonly numberOfItems: number;
29037
29037
  /**
29038
- * The **`appendItem()`** method of the SVGPointList interface adds a SVGPoint to the end of the list.
29038
+ * The **`appendItem()`** method of the SVGPointList interface adds a DOMPoint to the end of the list.
29039
29039
  *
29040
29040
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPointList/appendItem)
29041
29041
  */
@@ -29053,25 +29053,25 @@ interface SVGPointList {
29053
29053
  */
29054
29054
  getItem(index: number): DOMPoint;
29055
29055
  /**
29056
- * The **`initialize()`** method of the SVGPointList interface clears the list then adds a single new SVGPoint object to the list.
29056
+ * The **`initialize()`** method of the SVGPointList interface clears the list then adds a single new DOMPoint object to the list.
29057
29057
  *
29058
29058
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPointList/initialize)
29059
29059
  */
29060
29060
  initialize(newItem: DOMPoint): DOMPoint;
29061
29061
  /**
29062
- * The **`insertItemBefore()`** method of the SVGPointList interface inserts a SVGPoint before another item in the list.
29062
+ * The **`insertItemBefore()`** method of the SVGPointList interface inserts a DOMPoint before another item in the list.
29063
29063
  *
29064
29064
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPointList/insertItemBefore)
29065
29065
  */
29066
29066
  insertItemBefore(newItem: DOMPoint, index: number): DOMPoint;
29067
29067
  /**
29068
- * The **`removeItem()`** method of the SVGPointList interface removes a SVGPoint from the list.
29068
+ * The **`removeItem()`** method of the SVGPointList interface removes a DOMPoint from the list.
29069
29069
  *
29070
29070
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPointList/removeItem)
29071
29071
  */
29072
29072
  removeItem(index: number): DOMPoint;
29073
29073
  /**
29074
- * The **`replaceItem()`** method of the SVGPointList interface replaces a SVGPoint in the list.
29074
+ * The **`replaceItem()`** method of the SVGPointList interface replaces a DOMPoint in the list.
29075
29075
  *
29076
29076
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPointList/replaceItem)
29077
29077
  */
@@ -29365,7 +29365,7 @@ interface SVGSVGElement extends SVGGraphicsElement, SVGFitToViewBox, WindowEvent
29365
29365
  */
29366
29366
  createSVGNumber(): SVGNumber;
29367
29367
  /**
29368
- * The `createSVGPoint()` method of the SVGSVGElement interface creates an SVGPoint object outside of any document trees.
29368
+ * The `createSVGPoint()` method of the SVGSVGElement interface creates a DOMPoint object outside of any document trees.
29369
29369
  *
29370
29370
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGSVGElement/createSVGPoint)
29371
29371
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/web",
3
- "version": "0.0.240",
3
+ "version": "0.0.242",
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
@@ -8652,7 +8652,7 @@ interface DOMImplementation {
8652
8652
  *
8653
8653
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMImplementation/createDocumentType)
8654
8654
  */
8655
- createDocumentType(qualifiedName: string, publicId: string, systemId: string): DocumentType;
8655
+ createDocumentType(name: string, publicId: string, systemId: string): DocumentType;
8656
8656
  /**
8657
8657
  * The **`DOMImplementation.createHTMLDocument()`** method creates a new HTML Document.
8658
8658
  *
@@ -28996,7 +28996,7 @@ declare var SVGPatternElement: {
28996
28996
  };
28997
28997
 
28998
28998
  /**
28999
- * The **`SVGPointList`** interface represents a list of SVGPoint objects.
28999
+ * The **`SVGPointList`** interface represents a list of DOMPoint objects.
29000
29000
  *
29001
29001
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPointList)
29002
29002
  */
@@ -29014,7 +29014,7 @@ interface SVGPointList {
29014
29014
  */
29015
29015
  readonly numberOfItems: number;
29016
29016
  /**
29017
- * The **`appendItem()`** method of the SVGPointList interface adds a SVGPoint to the end of the list.
29017
+ * The **`appendItem()`** method of the SVGPointList interface adds a DOMPoint to the end of the list.
29018
29018
  *
29019
29019
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPointList/appendItem)
29020
29020
  */
@@ -29032,25 +29032,25 @@ interface SVGPointList {
29032
29032
  */
29033
29033
  getItem(index: number): DOMPoint;
29034
29034
  /**
29035
- * The **`initialize()`** method of the SVGPointList interface clears the list then adds a single new SVGPoint object to the list.
29035
+ * The **`initialize()`** method of the SVGPointList interface clears the list then adds a single new DOMPoint object to the list.
29036
29036
  *
29037
29037
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPointList/initialize)
29038
29038
  */
29039
29039
  initialize(newItem: DOMPoint): DOMPoint;
29040
29040
  /**
29041
- * The **`insertItemBefore()`** method of the SVGPointList interface inserts a SVGPoint before another item in the list.
29041
+ * The **`insertItemBefore()`** method of the SVGPointList interface inserts a DOMPoint before another item in the list.
29042
29042
  *
29043
29043
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPointList/insertItemBefore)
29044
29044
  */
29045
29045
  insertItemBefore(newItem: DOMPoint, index: number): DOMPoint;
29046
29046
  /**
29047
- * The **`removeItem()`** method of the SVGPointList interface removes a SVGPoint from the list.
29047
+ * The **`removeItem()`** method of the SVGPointList interface removes a DOMPoint from the list.
29048
29048
  *
29049
29049
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPointList/removeItem)
29050
29050
  */
29051
29051
  removeItem(index: number): DOMPoint;
29052
29052
  /**
29053
- * The **`replaceItem()`** method of the SVGPointList interface replaces a SVGPoint in the list.
29053
+ * The **`replaceItem()`** method of the SVGPointList interface replaces a DOMPoint in the list.
29054
29054
  *
29055
29055
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPointList/replaceItem)
29056
29056
  */
@@ -29344,7 +29344,7 @@ interface SVGSVGElement extends SVGGraphicsElement, SVGFitToViewBox, WindowEvent
29344
29344
  */
29345
29345
  createSVGNumber(): SVGNumber;
29346
29346
  /**
29347
- * The `createSVGPoint()` method of the SVGSVGElement interface creates an SVGPoint object outside of any document trees.
29347
+ * The `createSVGPoint()` method of the SVGSVGElement interface creates a DOMPoint object outside of any document trees.
29348
29348
  *
29349
29349
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGSVGElement/createSVGPoint)
29350
29350
  */
package/ts5.6/index.d.ts CHANGED
@@ -8659,7 +8659,7 @@ interface DOMImplementation {
8659
8659
  *
8660
8660
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMImplementation/createDocumentType)
8661
8661
  */
8662
- createDocumentType(qualifiedName: string, publicId: string, systemId: string): DocumentType;
8662
+ createDocumentType(name: string, publicId: string, systemId: string): DocumentType;
8663
8663
  /**
8664
8664
  * The **`DOMImplementation.createHTMLDocument()`** method creates a new HTML Document.
8665
8665
  *
@@ -29017,7 +29017,7 @@ declare var SVGPatternElement: {
29017
29017
  };
29018
29018
 
29019
29019
  /**
29020
- * The **`SVGPointList`** interface represents a list of SVGPoint objects.
29020
+ * The **`SVGPointList`** interface represents a list of DOMPoint objects.
29021
29021
  *
29022
29022
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPointList)
29023
29023
  */
@@ -29035,7 +29035,7 @@ interface SVGPointList {
29035
29035
  */
29036
29036
  readonly numberOfItems: number;
29037
29037
  /**
29038
- * The **`appendItem()`** method of the SVGPointList interface adds a SVGPoint to the end of the list.
29038
+ * The **`appendItem()`** method of the SVGPointList interface adds a DOMPoint to the end of the list.
29039
29039
  *
29040
29040
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPointList/appendItem)
29041
29041
  */
@@ -29053,25 +29053,25 @@ interface SVGPointList {
29053
29053
  */
29054
29054
  getItem(index: number): DOMPoint;
29055
29055
  /**
29056
- * The **`initialize()`** method of the SVGPointList interface clears the list then adds a single new SVGPoint object to the list.
29056
+ * The **`initialize()`** method of the SVGPointList interface clears the list then adds a single new DOMPoint object to the list.
29057
29057
  *
29058
29058
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPointList/initialize)
29059
29059
  */
29060
29060
  initialize(newItem: DOMPoint): DOMPoint;
29061
29061
  /**
29062
- * The **`insertItemBefore()`** method of the SVGPointList interface inserts a SVGPoint before another item in the list.
29062
+ * The **`insertItemBefore()`** method of the SVGPointList interface inserts a DOMPoint before another item in the list.
29063
29063
  *
29064
29064
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPointList/insertItemBefore)
29065
29065
  */
29066
29066
  insertItemBefore(newItem: DOMPoint, index: number): DOMPoint;
29067
29067
  /**
29068
- * The **`removeItem()`** method of the SVGPointList interface removes a SVGPoint from the list.
29068
+ * The **`removeItem()`** method of the SVGPointList interface removes a DOMPoint from the list.
29069
29069
  *
29070
29070
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPointList/removeItem)
29071
29071
  */
29072
29072
  removeItem(index: number): DOMPoint;
29073
29073
  /**
29074
- * The **`replaceItem()`** method of the SVGPointList interface replaces a SVGPoint in the list.
29074
+ * The **`replaceItem()`** method of the SVGPointList interface replaces a DOMPoint in the list.
29075
29075
  *
29076
29076
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPointList/replaceItem)
29077
29077
  */
@@ -29365,7 +29365,7 @@ interface SVGSVGElement extends SVGGraphicsElement, SVGFitToViewBox, WindowEvent
29365
29365
  */
29366
29366
  createSVGNumber(): SVGNumber;
29367
29367
  /**
29368
- * The `createSVGPoint()` method of the SVGSVGElement interface creates an SVGPoint object outside of any document trees.
29368
+ * The `createSVGPoint()` method of the SVGSVGElement interface creates a DOMPoint object outside of any document trees.
29369
29369
  *
29370
29370
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGSVGElement/createSVGPoint)
29371
29371
  */