We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents efe1b87 + 3e23f71 commit 661c8dcCopy full SHA for 661c8dc
dom/src/main/scala/org/scalajs/dom/URLSearchParams.scala
@@ -10,7 +10,7 @@ class URLSearchParams extends js.Iterable[js.Tuple2[String, String]] {
10
11
/** Leading '?' characters are ignored. */
12
def this(init: String) = this()
13
- def this(init: Sequence[String]) = this()
+ def this(init: Sequence[js.Tuple2[String, String]]) = this()
14
def this(init: js.Dictionary[String]) = this()
15
16
def append(name: String, value: String): Unit = js.native
0 commit comments