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

jsMain.web.clipboard.ClipboardEvent.kt Maven / Gradle / Ivy

// Automatically generated - do not modify!

@file:Suppress(
    "EXTERNAL_CLASS_CONSTRUCTOR_PROPERTY_PARAMETER",
)

package web.clipboard

import web.data.DataTransfer
import web.events.Event
import web.events.EventInit
import web.events.EventType

external interface ClipboardEventInit : EventInit {
    var clipboardData: DataTransfer?
}

open external class ClipboardEvent(
    override val type: EventType,
    init: ClipboardEventInit = definedExternally,
) : Event {
    val clipboardData: DataTransfer?

    companion object
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy