Skip to content

Commit 6b375a9

Browse files
committed
preSBT fixes
1 parent 9dabc3a commit 6b375a9

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

api-reports/2_12.txt

+3-2
Original file line numberDiff line numberDiff line change
@@ -1956,8 +1956,9 @@ File[JC] def webkitRelativePath: String
19561956
FileList[JC] @JSBracketAccess def apply(index: Int): T
19571957
FileList[JC] def item(index: Int): File
19581958
FileList[JC] def length: Int
1959-
FileOptions[JT] var lastModified: js.UndefOr[Int]
1960-
FileOptions[JT] var `type`: js.UndefOr[String]
1959+
FilePropertyBag[JT] var endings: js.UndefOr[String]
1960+
FilePropertyBag[JT] var lastModified: js.UndefOr[Int]
1961+
FilePropertyBag[JT] var `type`: js.UndefOr[String]
19611962
FileReader[JC] def abort(): Unit
19621963
FileReader[JC] def addEventListener[T <: Event](`type`: String, listener: js.Function1[T, _], options: EventListenerOptions): Unit
19631964
FileReader[JC] def addEventListener[T <: Event](`type`: String, listener: js.Function1[T, _], useCapture: Boolean?): Unit

api-reports/2_13.txt

+3-2
Original file line numberDiff line numberDiff line change
@@ -1956,8 +1956,9 @@ File[JC] def webkitRelativePath: String
19561956
FileList[JC] @JSBracketAccess def apply(index: Int): T
19571957
FileList[JC] def item(index: Int): File
19581958
FileList[JC] def length: Int
1959-
FileOptions[JT] var lastModified: js.UndefOr[Int]
1960-
FileOptions[JT] var `type`: js.UndefOr[String]
1959+
FilePropertyBag[JT] var endings: js.UndefOr[String]
1960+
FilePropertyBag[JT] var lastModified: js.UndefOr[Int]
1961+
FilePropertyBag[JT] var `type`: js.UndefOr[String]
19611962
FileReader[JC] def abort(): Unit
19621963
FileReader[JC] def addEventListener[T <: Event](`type`: String, listener: js.Function1[T, _], options: EventListenerOptions): Unit
19631964
FileReader[JC] def addEventListener[T <: Event](`type`: String, listener: js.Function1[T, _], useCapture: Boolean?): Unit

dom/src/main/scala/org/scalajs/dom/File.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,4 +34,4 @@ class File(bits: js.Iterable[Any], name: String, options: FilePropertyBag) exten
3434
* A string containing the path of the file relative to the ancestor directory the user selected.
3535
*/
3636
def webkitRelativePath: String = js.native
37-
}
37+
}

0 commit comments

Comments
 (0)