mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-22 00:53:20 +00:00
12 lines
344 B
Text
12 lines
344 B
Text
![]() |
#import <HTML/WorkerGlobalScope.idl>
|
||
|
|
||
|
// 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;
|
||
|
};
|