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

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

package web.events

external interface CustomEventInit : EventInit {
    var detail: T
}

external class CustomEvent(
    type: EventType>,
    eventInitDict: CustomEventInit = definedExternally,
) : Event {
    constructor(
        type: String,
        eventInitDict: CustomEventInit = definedExternally,
    )

    val detail: T
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy