mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-26 19:29:16 +00: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);
|
|
|
|
}
|