mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-16 01:13:08 +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;
|
|
};
|
|
|