1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 08:07:34 +00:00

LibWeb: Generate EventTarget bindings from IDL :^)

This commit is contained in:
Andreas Kling 2020-06-21 12:27:41 +02:00
parent a014b2930e
commit d724a12732
6 changed files with 29 additions and 134 deletions

View file

@ -0,0 +1,5 @@
interface EventTarget {
void addEventListener(DOMString type, EventListener? callback);
}