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

  readonly attribute DOMString id;
};

dictionary AddonEventInit : EventInit {
  required DOMString id;
};