Package-level declarations

Kotlin JavaScript wrappers for the XMLHttpRequest API.

Types

Link copied to clipboard
open external class FormData(form: HTMLFormElement = definedExternally)

Exposes the JavaScript FormData to Kotlin

Link copied to clipboard
open external class ProgressEvent(type: String, eventInitDict: ProgressEventInit = definedExternally) : Event

Exposes the JavaScript ProgressEvent to Kotlin

Link copied to clipboard
external interface ProgressEventInit : EventInit
Link copied to clipboard

Exposes the JavaScript XMLHttpRequest to Kotlin

Link copied to clipboard
abstract external class XMLHttpRequestEventTarget : EventTarget

Exposes the JavaScript XMLHttpRequestEventTarget to Kotlin

Link copied to clipboard
external interface XMLHttpRequestResponseType
Link copied to clipboard

Functions

Link copied to clipboard
inline fun ProgressEventInit(    lengthComputable: Boolean? = false,     loaded: Number? = 0,     total: Number? = 0,     bubbles: Boolean? = false,     cancelable: Boolean? = false,     composed: Boolean? = false): ProgressEventInit

Properties