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

jsMain.web.midi.MIDIMessageEvent.kt Maven / Gradle / Ivy

// Automatically generated - do not modify!

@file:Suppress(
    "EXTERNAL_CLASS_CONSTRUCTOR_PROPERTY_PARAMETER",
)

package web.midi

import js.typedarrays.Uint8Array
import web.events.Event
import web.events.EventInit
import web.events.EventType

external interface MIDIMessageEventInit : EventInit {
    var data: Uint8Array?
}

open external class MIDIMessageEvent(
    override val type: EventType,
    init: MIDIMessageEventInit = definedExternally,
) : Event {
    val data: Uint8Array

    companion object
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy