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

LibWeb: Add EventTarget.removeEventListener()

This commit is contained in:
Andreas Kling 2020-06-21 12:37:34 +02:00
parent d724a12732
commit 244b243d22
3 changed files with 9 additions and 0 deletions

View file

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