mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 07:05:24 +00:00
e5744b11cf
MozReview-Commit-ID: Klw4o0qIvCE --HG-- extra : rebase_source : 4968810209d80e31e854417b30ac4129299bed4e
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;
|
|
};
|
|
|