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