mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-24 02:09:28 +00:00
10 lines
309 B
Plaintext
10 lines
309 B
Plaintext
interface EventTarget {
|
|
|
|
// FIXME: Both of these should take in options
|
|
undefined addEventListener(DOMString type, EventListener? callback);
|
|
undefined removeEventListener(DOMString type, EventListener? callback);
|
|
|
|
[ImplementedAs=dispatch_event_binding] boolean dispatchEvent(Event event);
|
|
|
|
};
|