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

main.dom.events.DragEvent.kt Maven / Gradle / Ivy

// Automatically generated - do not modify!

package dom.events

import dom.data.DataTransfer

external interface DragEventInit : MouseEventInit {
    var dataTransfer: DataTransfer?
}

open external class DragEvent(
    type: String,
    init: DragEventInit = definedExternally,
) : MouseEvent {
    /** Returns the DataTransfer object for the event. */
    val dataTransfer: DataTransfer?

    companion object
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy