
main.web.animations.AnimationEvent.kt Maven / Gradle / Ivy
// Automatically generated - do not modify!
package web.animations
import web.events.Event
import web.events.EventInit
external interface AnimationEventInit : EventInit {
var animationName: String?
var elapsedTime: Double?
var pseudoElement: String?
}
open external class AnimationEvent(
type: String,
init: AnimationEventInit = definedExternally,
) : Event {
val animationName: String
val elapsedTime: Double
val pseudoElement: String
companion object
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy