mirror of
https://github.com/fluencelabs/wasm-bindgen
synced 2025-03-20 20:20:52 +00:00
13 lines
272 B
Plaintext
13 lines
272 B
Plaintext
|
interface PluginTag;
|
||
|
|
||
|
[Constructor(DOMString type, optional HiddenPluginEventInit eventInit), ChromeOnly]
|
||
|
interface HiddenPluginEvent : Event
|
||
|
{
|
||
|
readonly attribute PluginTag? tag;
|
||
|
};
|
||
|
|
||
|
dictionary HiddenPluginEventInit : EventInit
|
||
|
{
|
||
|
PluginTag? tag = null;
|
||
|
};
|