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

jsMain.web.html.FormDataEvent.kt Maven / Gradle / Ivy

// Automatically generated - do not modify!

@file:Suppress(
    "EXTERNAL_CLASS_CONSTRUCTOR_PROPERTY_PARAMETER",
)

package web.html

import web.events.Event
import web.events.EventInit
import web.events.EventType
import web.http.FormData

external interface FormDataEventInit : EventInit {
    var formData: FormData
}

open external class FormDataEvent(
    override val type: EventType,
    init: FormDataEventInit,
) : Event {
    /** Returns a FormData object representing names and values of elements associated to the target form. Operations on the FormData object will affect form data to be submitted. */
    val formData: FormData

    companion object
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy