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

jsMain.web.animations.AnimationEvent.kt Maven / Gradle / Ivy

// Automatically generated - do not modify!

@file:Suppress(
    "EXTERNAL_CLASS_CONSTRUCTOR_PROPERTY_PARAMETER",
)

package web.animations

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

external interface AnimationEventInit : EventInit {
    var animationName: String?
    var elapsedTime: Double?
    var pseudoElement: String?
}

open external class AnimationEvent(
    override val type: EventType,
    init: AnimationEventInit = definedExternally,
) : Event {
    val animationName: String
    val elapsedTime: Double
    val pseudoElement: String

    companion object
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy