web-sys: Fix typedef of nsISupports

The JS Object type is named "object" in webidl, not "Object".
This commit is contained in:
Nick Fitzgerald 2018-08-15 15:57:26 -07:00
parent 88582ec47c
commit 703e2a3fbe

View File

@ -1,4 +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;
typedef object nsISupports;