mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-04 14:58:37 +09:00
12 lines
328 B
Text
12 lines
328 B
Text
|
|
[ Func="mozilla::AddonManagerWebAPI::IsAPIEnabled",
|
||
|
|
Constructor(DOMString type, AddonEventInit eventInitDict)]
|
||
|
|
interface AddonEvent : Event {
|
||
|
|
readonly attribute DOMString id;
|
||
|
|
readonly attribute boolean needsRestart;
|
||
|
|
};
|
||
|
|
|
||
|
|
dictionary AddonEventInit : EventInit {
|
||
|
|
required DOMString id;
|
||
|
|
required boolean needsRestart;
|
||
|
|
};
|
||
|
|
|