@@ -5690,7 +5690,7 @@ interface GlobalEventHandlers {
5690
5690
* @param ev The event.
5691
5691
*/
5692
5692
onwaiting: ((this: GlobalEventHandlers, ev: Event) => any) | null;
5693
- /** @deprecated This is a legacy alias of `onanimationend `. */
5693
+ /** @deprecated This is a legacy alias of `onanimationstart `. */
5694
5694
onwebkitanimationend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
5695
5695
/** @deprecated This is a legacy alias of `onanimationiteration`. */
5696
5696
onwebkitanimationiteration: ((this: GlobalEventHandlers, ev: Event) => any) | null;
@@ -8662,6 +8662,14 @@ interface InnerHTML {
8662
8662
innerHTML: string;
8663
8663
}
8664
8664
8665
+ interface InputDeviceInfo extends MediaDeviceInfo {
8666
+ }
8667
+
8668
+ declare var InputDeviceInfo: {
8669
+ prototype: InputDeviceInfo;
8670
+ new(): InputDeviceInfo;
8671
+ };
8672
+
8665
8673
interface InputEvent extends UIEvent {
8666
8674
readonly data: string | null;
8667
8675
readonly dataTransfer: DataTransfer | null;
@@ -17512,7 +17520,7 @@ declare var onvolumechange: ((this: Window, ev: Event) => any) | null;
17512
17520
* @param ev The event.
17513
17521
*/
17514
17522
declare var onwaiting: ((this: Window, ev: Event) => any) | null;
17515
- /** @deprecated This is a legacy alias of `onanimationend `. */
17523
+ /** @deprecated This is a legacy alias of `onanimationstart `. */
17516
17524
declare var onwebkitanimationend: ((this: Window, ev: Event) => any) | null;
17517
17525
/** @deprecated This is a legacy alias of `onanimationiteration`. */
17518
17526
declare var onwebkitanimationiteration: ((this: Window, ev: Event) => any) | null;
0 commit comments