mirror of
https://github.com/SerenityOS/serenity
synced 2026-05-09 00:22:43 +02:00
7 lines
178 B
Plaintext
7 lines
178 B
Plaintext
interface EventTarget {
|
|
|
|
undefined addEventListener(DOMString type, EventListener? callback);
|
|
undefined removeEventListener(DOMString type, EventListener? callback);
|
|
|
|
};
|