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

main.webvtt.TrackEvent.kt Maven / Gradle / Ivy

// Automatically generated - do not modify!

package webvtt

import web.events.Event
import web.events.EventInit

external interface TrackEventInit : EventInit {
    var track: TextTrack?
}

open external class TrackEvent(
    type: String,
    init: TrackEventInit = definedExternally,
) : Event {
    /** Returns the track object (TextTrack, AudioTrack, or VideoTrack) to which the event relates. */
    val track: TextTrack?

    companion object
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy