@@ -12989,7 +12989,7 @@ interface GlobalEventHandlersEventMap {
1298912989 "focusout": FocusEvent;
1299012990 "formdata": FormDataEvent;
1299112991 "gotpointercapture": PointerEvent;
12992- "input": Event ;
12992+ "input": InputEvent ;
1299312993 "invalid": Event;
1299412994 "keydown": KeyboardEvent;
1299512995 "keypress": KeyboardEvent;
@@ -13130,7 +13130,7 @@ interface GlobalEventHandlers {
1313013130 /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/gotpointercapture_event) */
1313113131 ongotpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
1313213132 /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/input_event) */
13133- oninput: ((this: GlobalEventHandlers, ev: Event ) => any) | null;
13133+ oninput: ((this: GlobalEventHandlers, ev: InputEvent ) => any) | null;
1313413134 /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/invalid_event) */
1313513135 oninvalid: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1313613136 /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/keydown_event) */
@@ -39600,7 +39600,7 @@ declare var onformdata: ((this: Window, ev: FormDataEvent) => any) | null;
3960039600/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/gotpointercapture_event) */
3960139601declare var ongotpointercapture: ((this: Window, ev: PointerEvent) => any) | null;
3960239602/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/input_event) */
39603- declare var oninput: ((this: Window, ev: Event ) => any) | null;
39603+ declare var oninput: ((this: Window, ev: InputEvent ) => any) | null;
3960439604/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/invalid_event) */
3960539605declare var oninvalid: ((this: Window, ev: Event) => any) | null;
3960639606/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/keydown_event) */
0 commit comments