These no longer serve any purpose now that we run the IDLGenerator on all of these files at once.
9 lines
306 B
Text
9 lines
306 B
Text
// https://html.spec.whatwg.org/multipage/workers.html#sharedworkerglobalscope
|
|
[Global=(Worker,SharedWorker),Exposed=SharedWorker]
|
|
interface SharedWorkerGlobalScope : WorkerGlobalScope {
|
|
[Replaceable] readonly attribute DOMString name;
|
|
|
|
undefined close();
|
|
|
|
attribute EventHandler onconnect;
|
|
};
|