summaryrefslogtreecommitdiffstats
path: root/dom/webidl/AddonEvent.webidl
blob: 0f0e916e4d4a1ff3a6fa93caba297efa0cd028c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
[Func="mozilla::AddonManagerWebAPI::IsAPIEnabled",
 Exposed=Window]
interface AddonEvent : Event {
  constructor(DOMString type, AddonEventInit eventInitDict);

  readonly attribute DOMString id;
};

dictionary AddonEventInit : EventInit {
  required DOMString id;
};