"js" -> "kotlin.js"
This commit is contained in:
@@ -1,8 +1,6 @@
|
||||
package js.dom.html5
|
||||
package kotlin.js.dom.html5
|
||||
|
||||
import js.native
|
||||
import js.noImpl
|
||||
import js.dom.html.HTMLElement
|
||||
import kotlin.js.dom.html.HTMLElement
|
||||
import org.w3c.dom.Element
|
||||
|
||||
public native trait HTMLCanvasElement : HTMLElement {
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
package html5.files
|
||||
|
||||
import js.native
|
||||
|
||||
native
|
||||
class FileReader() {
|
||||
var onloadend : ((FileReaderEvent)->Unit)? = js.noImpl //
|
||||
|
||||
@@ -1,11 +1,9 @@
|
||||
package html5.localstorage
|
||||
|
||||
import js.native
|
||||
|
||||
native
|
||||
val localStorage : LocalStorageClass = js.noImpl
|
||||
native
|
||||
class LocalStorageClass() {
|
||||
fun getItem(key : String) : Any? = js.noImpl
|
||||
fun setItem(key : String, value : Any?) : Unit = js.noImpl
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user