mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-04 15:45:25 +00:00
From the Web IDL spec: https://heycam.github.io/webidl/#prod-Namespace Namespace :: namespace identifier { NamespaceMembers } ;
7 lines
168 B
Plaintext
7 lines
168 B
Plaintext
interface EventTarget {
|
|
|
|
void addEventListener(DOMString type, EventListener? callback);
|
|
void removeEventListener(DOMString type, EventListener? callback);
|
|
|
|
};
|