JS: Make Date.getTime return Double instead of Int.

#KT-4141 Fixed
This commit is contained in:
Ilya Gorbunov
2017-01-23 08:29:51 +03:00
parent 46d251df1b
commit 8e9bbe276c
+1 -1
View File
@@ -1,5 +1,5 @@
package kotlin.js
public external class Date() {
public fun getTime(): Int
public fun getTime(): Double
}