
main.dom.events.FormDataEvent.kt Maven / Gradle / Ivy
// Automatically generated - do not modify!
package dom.events
import web.events.Event
import web.events.EventInit
import web.http.FormData
external interface FormDataEventInit : EventInit {
var formData: FormData
}
open external class FormDataEvent(
type: String,
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