web-sys: Add a type alias to Object from nsISupports

This commit is contained in:
Nick Fitzgerald 2018-08-15 10:54:50 -07:00
parent a45676045e
commit 6b5beda8d1

View File

@ -0,0 +1,4 @@
// `nsISupports` is a Gecko thing that can be queried if it implements some
// interface. We can query anything via `JsCast`, so it is good enough to just
// call it an Object.
typedef Object nsISupports;