
main.web.http.fetchAsync.kt Maven / Gradle / Ivy
package web.http
import web.url.URL
import kotlin.js.Promise
@JsName("fetch")
external fun fetchAsync(
input: Request,
init: RequestInit = definedExternally,
): Promise
@JsName("fetch")
external fun fetchAsync(
input: String,
init: RequestInit = definedExternally,
): Promise
@JsName("fetch")
external fun fetchAsync(
input: URL,
init: RequestInit = definedExternally,
): Promise
© 2015 - 2025 Weber Informatics LLC | Privacy Policy