mirror of
https://github.com/roytam1/UXP.git
synced 2026-05-26 14:54:25 +00:00
13 lines
328 B
Plaintext
13 lines
328 B
Plaintext
[ 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;
|
|
};
|
|
|