mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-28 20:29:42 +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);
|
|
|
|
};
|