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

main.web.events.IEventTarget.kt Maven / Gradle / Ivy

package web.events

external interface IEventTarget {
    fun addEventListener(
        type: String,
        callback: ((Event) -> Unit)?,
        options: dynamic = definedExternally,
    )

    fun removeEventListener(
        type: String,
        callback: ((Event) -> Unit)?,
        options: dynamic = definedExternally,
    )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy