HttpRequest
function HttpRequest(
method: ,
| "GET"
| "POST"
| "HEAD"
| "PUT"
| "PATCH"
| "DELETE"
url: string,
init: {
): Promise<HttpResponse>;headers: Record<string, string>;
body: ArrayBuffer;
},§
HttpRequest(method: "GET" | "POST" | "HEAD" | "PUT" | "PATCH" | "DELETE", url: string, init: {
[src]headers: Record<string, string>;
body: ArrayBuffer;
}): Promise<HttpResponse>§Parameters
§Return Type
§
Promise<HttpResponse>
[src]