@@ -5747,9 +5747,9 @@ interface GlobalEventHandlersEventMap {
5747
5747
"compositionstart": CompositionEvent;
5748
5748
"compositionupdate": CompositionEvent;
5749
5749
"contextmenu": MouseEvent;
5750
- "copy": Event ;
5750
+ "copy": ClipboardEvent ;
5751
5751
"cuechange": Event;
5752
- "cut": Event ;
5752
+ "cut": ClipboardEvent ;
5753
5753
"dblclick": MouseEvent;
5754
5754
"drag": DragEvent;
5755
5755
"dragend": DragEvent;
@@ -5784,7 +5784,7 @@ interface GlobalEventHandlersEventMap {
5784
5784
"mouseout": MouseEvent;
5785
5785
"mouseover": MouseEvent;
5786
5786
"mouseup": MouseEvent;
5787
- "paste": Event ;
5787
+ "paste": ClipboardEvent ;
5788
5788
"pause": Event;
5789
5789
"play": Event;
5790
5790
"playing": Event;
@@ -5870,9 +5870,9 @@ interface GlobalEventHandlers {
5870
5870
* @param ev The mouse event.
5871
5871
*/
5872
5872
oncontextmenu: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
5873
- oncopy: ((this: GlobalEventHandlers, ev: Event ) => any) | null;
5873
+ oncopy: ((this: GlobalEventHandlers, ev: ClipboardEvent ) => any) | null;
5874
5874
oncuechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
5875
- oncut: ((this: GlobalEventHandlers, ev: Event ) => any) | null;
5875
+ oncut: ((this: GlobalEventHandlers, ev: ClipboardEvent ) => any) | null;
5876
5876
/**
5877
5877
* Fires when the user double-clicks the object.
5878
5878
* @param ev The mouse event.
@@ -6002,7 +6002,7 @@ interface GlobalEventHandlers {
6002
6002
* @param ev The mouse event.
6003
6003
*/
6004
6004
onmouseup: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
6005
- onpaste: ((this: GlobalEventHandlers, ev: Event ) => any) | null;
6005
+ onpaste: ((this: GlobalEventHandlers, ev: ClipboardEvent ) => any) | null;
6006
6006
/**
6007
6007
* Occurs when playback is paused.
6008
6008
* @param ev The event.
@@ -18204,9 +18204,9 @@ declare var onclose: ((this: Window, ev: Event) => any) | null;
18204
18204
* @param ev The mouse event.
18205
18205
*/
18206
18206
declare var oncontextmenu: ((this: Window, ev: MouseEvent) => any) | null;
18207
- declare var oncopy: ((this: Window, ev: Event ) => any) | null;
18207
+ declare var oncopy: ((this: Window, ev: ClipboardEvent ) => any) | null;
18208
18208
declare var oncuechange: ((this: Window, ev: Event) => any) | null;
18209
- declare var oncut: ((this: Window, ev: Event ) => any) | null;
18209
+ declare var oncut: ((this: Window, ev: ClipboardEvent ) => any) | null;
18210
18210
/**
18211
18211
* Fires when the user double-clicks the object.
18212
18212
* @param ev The mouse event.
@@ -18336,7 +18336,7 @@ declare var onmouseover: ((this: Window, ev: MouseEvent) => any) | null;
18336
18336
* @param ev The mouse event.
18337
18337
*/
18338
18338
declare var onmouseup: ((this: Window, ev: MouseEvent) => any) | null;
18339
- declare var onpaste: ((this: Window, ev: Event ) => any) | null;
18339
+ declare var onpaste: ((this: Window, ev: ClipboardEvent ) => any) | null;
18340
18340
/**
18341
18341
* Occurs when playback is paused.
18342
18342
* @param ev The event.
0 commit comments