@types/web 0.0.253 → 0.0.255

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.253 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Fweb%400.0.253.
50
+ You can read what changed in version 0.0.255 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Fweb%400.0.255.
package/index.d.ts CHANGED
@@ -8098,8 +8098,11 @@ interface CanvasUserInterface {
8098
8098
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CaretPosition)
8099
8099
  */
8100
8100
  interface CaretPosition {
8101
+ /** The **`offset`** property of the CaretPosition interface returns an integer representing the offset of the selection in the caret position node. */
8101
8102
  readonly offset: number;
8103
+ /** The **`offsetNode`** property of the CaretPosition interface returns a Node containing the found node at the caret's position. */
8102
8104
  readonly offsetNode: Node;
8105
+ /** The `getClientRect()` method of the CaretPosition interface returns the client rectangle for the caret range. */
8103
8106
  getClientRect(): DOMRect | null;
8104
8107
  }
8105
8108
 
@@ -26680,7 +26683,9 @@ declare var Response: {
26680
26683
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAElement)
26681
26684
  */
26682
26685
  interface SVGAElement extends SVGGraphicsElement, SVGURIReference {
26686
+ /** The **`rel`** property of the SVGAElement returns a string reflecting the value of the `rel` attribute of the SVG a element. */
26683
26687
  rel: string;
26688
+ /** The **`relList`** read-only property of the SVGAElement returns a live DOMTokenList reflecting the space-separated string `<list-of-Link-Types>` values of the `rel` attribute of the SVG a element. */
26684
26689
  get relList(): DOMTokenList;
26685
26690
  set relList(value: string);
26686
26691
  /**
@@ -33093,7 +33098,7 @@ declare var URL: {
33093
33098
  */
33094
33099
  canParse(url: string | URL, base?: string | URL): boolean;
33095
33100
  /**
33096
- * The **`createObjectURL()`** static method of the URL interface creates a string containing a URL representing the object given in the parameter.
33101
+ * The **`createObjectURL()`** static method of the URL interface creates a string containing a blob URL pointing to the object given in the parameter.
33097
33102
  *
33098
33103
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/URL/createObjectURL_static)
33099
33104
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/web",
3
- "version": "0.0.253",
3
+ "version": "0.0.255",
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
@@ -8090,8 +8090,11 @@ interface CanvasUserInterface {
8090
8090
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CaretPosition)
8091
8091
  */
8092
8092
  interface CaretPosition {
8093
+ /** The **`offset`** property of the CaretPosition interface returns an integer representing the offset of the selection in the caret position node. */
8093
8094
  readonly offset: number;
8095
+ /** The **`offsetNode`** property of the CaretPosition interface returns a Node containing the found node at the caret's position. */
8094
8096
  readonly offsetNode: Node;
8097
+ /** The `getClientRect()` method of the CaretPosition interface returns the client rectangle for the caret range. */
8095
8098
  getClientRect(): DOMRect | null;
8096
8099
  }
8097
8100
 
@@ -26659,7 +26662,9 @@ declare var Response: {
26659
26662
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAElement)
26660
26663
  */
26661
26664
  interface SVGAElement extends SVGGraphicsElement, SVGURIReference {
26665
+ /** The **`rel`** property of the SVGAElement returns a string reflecting the value of the `rel` attribute of the SVG a element. */
26662
26666
  rel: string;
26667
+ /** The **`relList`** read-only property of the SVGAElement returns a live DOMTokenList reflecting the space-separated string `<list-of-Link-Types>` values of the `rel` attribute of the SVG a element. */
26663
26668
  readonly relList: DOMTokenList;
26664
26669
  /**
26665
26670
  * The **`SVGAElement.target`** read-only property of SVGAElement returns an SVGAnimatedString object that specifies the portion of a target window, frame, pane into which a document is to be opened when a link is activated.
@@ -33070,7 +33075,7 @@ declare var URL: {
33070
33075
  */
33071
33076
  canParse(url: string | URL, base?: string | URL): boolean;
33072
33077
  /**
33073
- * The **`createObjectURL()`** static method of the URL interface creates a string containing a URL representing the object given in the parameter.
33078
+ * The **`createObjectURL()`** static method of the URL interface creates a string containing a blob URL pointing to the object given in the parameter.
33074
33079
  *
33075
33080
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/URL/createObjectURL_static)
33076
33081
  */
package/ts5.6/index.d.ts CHANGED
@@ -8098,8 +8098,11 @@ interface CanvasUserInterface {
8098
8098
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CaretPosition)
8099
8099
  */
8100
8100
  interface CaretPosition {
8101
+ /** The **`offset`** property of the CaretPosition interface returns an integer representing the offset of the selection in the caret position node. */
8101
8102
  readonly offset: number;
8103
+ /** The **`offsetNode`** property of the CaretPosition interface returns a Node containing the found node at the caret's position. */
8102
8104
  readonly offsetNode: Node;
8105
+ /** The `getClientRect()` method of the CaretPosition interface returns the client rectangle for the caret range. */
8103
8106
  getClientRect(): DOMRect | null;
8104
8107
  }
8105
8108
 
@@ -26680,7 +26683,9 @@ declare var Response: {
26680
26683
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAElement)
26681
26684
  */
26682
26685
  interface SVGAElement extends SVGGraphicsElement, SVGURIReference {
26686
+ /** The **`rel`** property of the SVGAElement returns a string reflecting the value of the `rel` attribute of the SVG a element. */
26683
26687
  rel: string;
26688
+ /** The **`relList`** read-only property of the SVGAElement returns a live DOMTokenList reflecting the space-separated string `<list-of-Link-Types>` values of the `rel` attribute of the SVG a element. */
26684
26689
  get relList(): DOMTokenList;
26685
26690
  set relList(value: string);
26686
26691
  /**
@@ -33093,7 +33098,7 @@ declare var URL: {
33093
33098
  */
33094
33099
  canParse(url: string | URL, base?: string | URL): boolean;
33095
33100
  /**
33096
- * The **`createObjectURL()`** static method of the URL interface creates a string containing a URL representing the object given in the parameter.
33101
+ * The **`createObjectURL()`** static method of the URL interface creates a string containing a blob URL pointing to the object given in the parameter.
33097
33102
  *
33098
33103
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/URL/createObjectURL_static)
33099
33104
  */