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

main.web.http.Request.kt Maven / Gradle / Ivy

package web.http

import web.abort.AbortSignal
import web.url.URL

external class Request : org.w3c.fetch.Request {
    constructor(
        input: String,
        init: RequestInit = definedExternally,
    )

    constructor(
        input: URL,
        init: RequestInit = definedExternally,
    )

    constructor(
        input: Request,
        init: RequestInit = definedExternally,
    )

    val signal: AbortSignal
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy