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

jsMain.web.events.ProgressEvent.kt Maven / Gradle / Ivy

// Automatically generated - do not modify!

@file:Suppress(
    "EXTERNAL_CLASS_CONSTRUCTOR_PROPERTY_PARAMETER",
)

package web.events

import js.core.JsLong

external interface ProgressEventInit : EventInit {
    var lengthComputable: Boolean?
    var loaded: JsLong?
    var total: JsLong?
}

open external class ProgressEvent(
    override val type: EventType>,
    init: ProgressEventInit = definedExternally,
) : Event {
    val lengthComputable: Boolean
    val loaded: JsLong
    override val target: T?
    val total: JsLong

    companion object
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy