File tree Expand file tree Collapse file tree 1 file changed +0
-8
lines changed
dom/src/main/scala/org/scalajs/dom Expand file tree Collapse file tree 1 file changed +0
-8
lines changed Original file line number Diff line number Diff line change @@ -2,14 +2,6 @@ package org.scalajs.dom
2
2
3
3
import scala .scalajs .js
4
4
5
- /** The Worker interface represents a background task that can be easily created and can send messages back to their
6
- * creators. Creating a worker is as simple as calling the Worker() constructor, specifying a script to be run in the
7
- * worker thread.
8
- *
9
- * Of note is the fact that workers may in turn spawn new workers as long as those workers are hosted within the same
10
- * origin as the parent page. In addition, workers may use XMLHttpRequest for network I/O, with the exception that the
11
- * responseXML and channel attributes on XMLHttpRequest always return null.
12
- */
13
5
@ js.native
14
6
trait WorkerOptions extends js.Any {
15
7
var credentials : js.UndefOr [RequestCredentials ] = js.native
You can’t perform that action at this time.
0 commit comments