File tree Expand file tree Collapse file tree 3 files changed +4
-12
lines changed
Expand file tree Collapse file tree 3 files changed +4
-12
lines changed Original file line number Diff line number Diff line change @@ -52,7 +52,6 @@ type workerType =
5252 | @as ("classic" ) Classic
5353 | @as ("module" ) Module
5454
55-
5655/** An object containing option properties that can set when creating the
5756object instance. */
5857type workerOptions = {
@@ -71,5 +70,5 @@ the complete list of functions available to workers.
7170@editor.completeFrom (SharedWorkerGlobalScope )
7271type sharedWorkerGlobalScope = {
7372 ... workerGlobalScope ,
74- name : option <string >
73+ name : option <string >,
7574}
Original file line number Diff line number Diff line change 11open ChannelMessagingAPI
22open WebWorkersAPI
33
4- include EventTarget .Impl ({
5- type t = sharedWorker
6- })
4+ include EventTarget .Impl ({type t = sharedWorker })
75
86/**
97`make(string)`
Original file line number Diff line number Diff line change @@ -5,9 +5,7 @@ module Impl = (
55 type t
66 },
77) => {
8- include WorkerGlobalScope .Impl ({
9- type t = T .t
10- })
8+ include WorkerGlobalScope .Impl ({type t = T .t })
119
1210 /**
1311`close(sharedWorkerGlobalScope)`
@@ -26,7 +24,4 @@ self -> SharedWorkerGlobalScope.close
2624 external close : T .t => unit = "close"
2725}
2826
29- include Impl ({
30- type t = sharedWorkerGlobalScope
31- })
32-
27+ include Impl ({type t = sharedWorkerGlobalScope })
You can’t perform that action at this time.
0 commit comments