All Downloads are FREE. Search and download functionalities are using the official Maven repository.

core.debug.kt Maven / Gradle / Ivy

There is a newer version: 1.0.7
Show newest version
package kotlin.js

// https://developer.mozilla.org/en/DOM/console
@native public interface Console {
    @native public fun dir(o: Any): Unit = noImpl
    @native public fun error(vararg o: Any?): Unit = noImpl
    @native public fun info(vararg o: Any?): Unit = noImpl
    @native public fun log(vararg o: Any?): Unit = noImpl
    @native public fun warn(vararg o: Any?): Unit = noImpl
}

@native
public val console: Console = noImpl




© 2015 - 2024 Weber Informatics LLC | Privacy Policy