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

main.web.speech.SpeechSynthesisEvent.kt Maven / Gradle / Ivy

// Automatically generated - do not modify!

package web.speech

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

external interface SpeechSynthesisEventInit : EventInit {
    var charIndex: Int?
    var charLength: Int?
    var elapsedTime: Double?
    var name: String?
    var utterance: SpeechSynthesisUtterance
}

open external class SpeechSynthesisEvent(
    type: String,
    init: SpeechSynthesisEventInit,
) : Event {
    val charIndex: Int
    val charLength: Int
    val elapsedTime: Double
    val name: String
    val utterance: SpeechSynthesisUtterance

    companion object
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy