@types/web 0.0.262 → 0.0.263

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.262 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Fweb%400.0.262.
50
+ You can read what changed in version 0.0.263 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Fweb%400.0.263.
package/index.d.ts CHANGED
@@ -12992,7 +12992,7 @@ interface GlobalEventHandlersEventMap {
12992
12992
  "focusout": FocusEvent;
12993
12993
  "formdata": FormDataEvent;
12994
12994
  "gotpointercapture": PointerEvent;
12995
- "input": Event;
12995
+ "input": InputEvent;
12996
12996
  "invalid": Event;
12997
12997
  "keydown": KeyboardEvent;
12998
12998
  "keypress": KeyboardEvent;
@@ -13133,7 +13133,7 @@ interface GlobalEventHandlers {
13133
13133
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/gotpointercapture_event) */
13134
13134
  ongotpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
13135
13135
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/input_event) */
13136
- oninput: ((this: GlobalEventHandlers, ev: Event) => any) | null;
13136
+ oninput: ((this: GlobalEventHandlers, ev: InputEvent) => any) | null;
13137
13137
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/invalid_event) */
13138
13138
  oninvalid: ((this: GlobalEventHandlers, ev: Event) => any) | null;
13139
13139
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/keydown_event) */
@@ -39603,7 +39603,7 @@ declare var onformdata: ((this: Window, ev: FormDataEvent) => any) | null;
39603
39603
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/gotpointercapture_event) */
39604
39604
  declare var ongotpointercapture: ((this: Window, ev: PointerEvent) => any) | null;
39605
39605
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/input_event) */
39606
- declare var oninput: ((this: Window, ev: Event) => any) | null;
39606
+ declare var oninput: ((this: Window, ev: InputEvent) => any) | null;
39607
39607
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/invalid_event) */
39608
39608
  declare var oninvalid: ((this: Window, ev: Event) => any) | null;
39609
39609
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/keydown_event) */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/web",
3
- "version": "0.0.262",
3
+ "version": "0.0.263",
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
@@ -12981,7 +12981,7 @@ interface GlobalEventHandlersEventMap {
12981
12981
  "focusout": FocusEvent;
12982
12982
  "formdata": FormDataEvent;
12983
12983
  "gotpointercapture": PointerEvent;
12984
- "input": Event;
12984
+ "input": InputEvent;
12985
12985
  "invalid": Event;
12986
12986
  "keydown": KeyboardEvent;
12987
12987
  "keypress": KeyboardEvent;
@@ -13122,7 +13122,7 @@ interface GlobalEventHandlers {
13122
13122
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/gotpointercapture_event) */
13123
13123
  ongotpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
13124
13124
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/input_event) */
13125
- oninput: ((this: GlobalEventHandlers, ev: Event) => any) | null;
13125
+ oninput: ((this: GlobalEventHandlers, ev: InputEvent) => any) | null;
13126
13126
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/invalid_event) */
13127
13127
  oninvalid: ((this: GlobalEventHandlers, ev: Event) => any) | null;
13128
13128
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/keydown_event) */
@@ -39580,7 +39580,7 @@ declare var onformdata: ((this: Window, ev: FormDataEvent) => any) | null;
39580
39580
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/gotpointercapture_event) */
39581
39581
  declare var ongotpointercapture: ((this: Window, ev: PointerEvent) => any) | null;
39582
39582
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/input_event) */
39583
- declare var oninput: ((this: Window, ev: Event) => any) | null;
39583
+ declare var oninput: ((this: Window, ev: InputEvent) => any) | null;
39584
39584
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/invalid_event) */
39585
39585
  declare var oninvalid: ((this: Window, ev: Event) => any) | null;
39586
39586
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/keydown_event) */
package/ts5.6/index.d.ts CHANGED
@@ -12992,7 +12992,7 @@ interface GlobalEventHandlersEventMap {
12992
12992
  "focusout": FocusEvent;
12993
12993
  "formdata": FormDataEvent;
12994
12994
  "gotpointercapture": PointerEvent;
12995
- "input": Event;
12995
+ "input": InputEvent;
12996
12996
  "invalid": Event;
12997
12997
  "keydown": KeyboardEvent;
12998
12998
  "keypress": KeyboardEvent;
@@ -13133,7 +13133,7 @@ interface GlobalEventHandlers {
13133
13133
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/gotpointercapture_event) */
13134
13134
  ongotpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
13135
13135
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/input_event) */
13136
- oninput: ((this: GlobalEventHandlers, ev: Event) => any) | null;
13136
+ oninput: ((this: GlobalEventHandlers, ev: InputEvent) => any) | null;
13137
13137
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/invalid_event) */
13138
13138
  oninvalid: ((this: GlobalEventHandlers, ev: Event) => any) | null;
13139
13139
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/keydown_event) */
@@ -39603,7 +39603,7 @@ declare var onformdata: ((this: Window, ev: FormDataEvent) => any) | null;
39603
39603
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/gotpointercapture_event) */
39604
39604
  declare var ongotpointercapture: ((this: Window, ev: PointerEvent) => any) | null;
39605
39605
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/input_event) */
39606
- declare var oninput: ((this: Window, ev: Event) => any) | null;
39606
+ declare var oninput: ((this: Window, ev: InputEvent) => any) | null;
39607
39607
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/invalid_event) */
39608
39608
  declare var oninvalid: ((this: Window, ev: Event) => any) | null;
39609
39609
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/keydown_event) */