mirror of
https://github.com/RGBCube/serenity
synced 2025-06-01 06:08:12 +00:00
12 lines
290 B
Text
12 lines
290 B
Text
#import <DOM/Event.idl>
|
|
|
|
interface UIEvent : Event {
|
|
constructor(DOMString type, optional UIEventInit eventInitDict = {});
|
|
readonly attribute Window? view;
|
|
readonly attribute long detail;
|
|
};
|
|
|
|
dictionary UIEventInit : EventInit {
|
|
Window? view = null;
|
|
long detail = 0;
|
|
};
|