mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-17 01:43:08 +09:00
13 lines
261 B
Text
13 lines
261 B
Text
interface EventTarget {
|
|
void addEventListener();
|
|
};
|
|
|
|
interface Event {};
|
|
|
|
callback EventHandlerNonNull = any (Event event);
|
|
typedef EventHandlerNonNull? EventHandler;
|
|
|
|
[NoInterfaceObject]
|
|
interface TestEvent : EventTarget {
|
|
attribute EventHandler onfoo;
|
|
};
|