1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-06-01 06:08:12 +00:00
serenity/Userland/Libraries/LibWeb/UIEvents/UIEvent.idl
2021-10-01 20:14:45 +02:00

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;
};