mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 11:28:12 +00:00

From the Web IDL spec: https://heycam.github.io/webidl/#prod-Namespace Namespace :: namespace identifier { NamespaceMembers } ;
6 lines
168 B
Text
6 lines
168 B
Text
interface EventTarget {
|
|
|
|
void addEventListener(DOMString type, EventListener? callback);
|
|
void removeEventListener(DOMString type, EventListener? callback);
|
|
|
|
};
|