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

jsMain.web.uievents.DragEvent.kt Maven / Gradle / Ivy

// Automatically generated - do not modify!

@file:Suppress(
    "EXTERNAL_CLASS_CONSTRUCTOR_PROPERTY_PARAMETER",
)

package web.uievents

import web.data.DataTransfer
import web.events.EventType

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

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

    companion object
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy