
jsMain.web.speech.SpeechSynthesisEvent.kt Maven / Gradle / Ivy
// Automatically generated - do not modify!
@file:Suppress(
"EXTERNAL_CLASS_CONSTRUCTOR_PROPERTY_PARAMETER",
)
package web.speech
import web.events.Event
import web.events.EventInit
import web.events.EventType
external interface SpeechSynthesisEventInit : EventInit {
var charIndex: Int?
var charLength: Int?
var elapsedTime: Double?
var name: String?
var utterance: SpeechSynthesisUtterance
}
open external class SpeechSynthesisEvent(
override val type: EventType,
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