@types/web 0.0.210 → 0.0.211

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.210 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Fweb%400.0.210.
50
+ You can read what changed in version 0.0.211 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Fweb%400.0.211.
package/index.d.ts CHANGED
@@ -9933,7 +9933,7 @@ interface GlobalEventHandlers {
9933
9933
  * Fires immediately after the browser loads the object.
9934
9934
  * @param ev The event.
9935
9935
  *
9936
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGElement/load_event)
9936
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/load_event)
9937
9937
  */
9938
9938
  onload: ((this: GlobalEventHandlers, ev: Event) => any) | null;
9939
9939
  /**
@@ -10745,6 +10745,8 @@ interface HTMLDialogElement extends HTMLElement {
10745
10745
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLDialogElement/close)
10746
10746
  */
10747
10747
  close(returnValue?: string): void;
10748
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLDialogElement/requestClose) */
10749
+ requestClose(returnValue?: string): void;
10748
10750
  /**
10749
10751
  * Displays the dialog element.
10750
10752
  *
@@ -14864,7 +14866,7 @@ interface IDBObjectStore {
14864
14866
  *
14865
14867
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/keyPath)
14866
14868
  */
14867
- readonly keyPath: string | string[];
14869
+ readonly keyPath: string | string[] | null;
14868
14870
  /**
14869
14871
  * Returns the name of the store.
14870
14872
  *
@@ -29277,7 +29279,7 @@ declare var onkeyup: ((this: Window, ev: KeyboardEvent) => any) | null;
29277
29279
  * Fires immediately after the browser loads the object.
29278
29280
  * @param ev The event.
29279
29281
  *
29280
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGElement/load_event)
29282
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/load_event)
29281
29283
  */
29282
29284
  declare var onload: ((this: Window, ev: Event) => any) | null;
29283
29285
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/web",
3
- "version": "0.0.210",
3
+ "version": "0.0.211",
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
@@ -9923,7 +9923,7 @@ interface GlobalEventHandlers {
9923
9923
  * Fires immediately after the browser loads the object.
9924
9924
  * @param ev The event.
9925
9925
  *
9926
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGElement/load_event)
9926
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/load_event)
9927
9927
  */
9928
9928
  onload: ((this: GlobalEventHandlers, ev: Event) => any) | null;
9929
9929
  /**
@@ -10733,6 +10733,8 @@ interface HTMLDialogElement extends HTMLElement {
10733
10733
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLDialogElement/close)
10734
10734
  */
10735
10735
  close(returnValue?: string): void;
10736
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLDialogElement/requestClose) */
10737
+ requestClose(returnValue?: string): void;
10736
10738
  /**
10737
10739
  * Displays the dialog element.
10738
10740
  *
@@ -14844,7 +14846,7 @@ interface IDBObjectStore {
14844
14846
  *
14845
14847
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/keyPath)
14846
14848
  */
14847
- readonly keyPath: string | string[];
14849
+ readonly keyPath: string | string[] | null;
14848
14850
  /**
14849
14851
  * Returns the name of the store.
14850
14852
  *
@@ -29255,7 +29257,7 @@ declare var onkeyup: ((this: Window, ev: KeyboardEvent) => any) | null;
29255
29257
  * Fires immediately after the browser loads the object.
29256
29258
  * @param ev The event.
29257
29259
  *
29258
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGElement/load_event)
29260
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/load_event)
29259
29261
  */
29260
29262
  declare var onload: ((this: Window, ev: Event) => any) | null;
29261
29263
  /**