mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-30 19:47:17 +02:00
7 lines
167 B
Plaintext
7 lines
167 B
Plaintext
interface EventTarget {
|
|
|
|
void addEventListener(DOMString type, EventListener? callback);
|
|
void removeEventListener(DOMString type, EventListener? callback);
|
|
|
|
}
|