Skip to content

@loontail/minecraft-kit v0.8.14 / HttpMethod

Type alias: HttpMethod

ts
type HttpMethod: "GET" | "POST" | "PUT" | "DELETE";

HTTP method supported by HttpClient.

Example

ts
import type { HttpClient, HttpMethod } from "@loontail/minecraft-kit";

const request = (http: HttpClient, method: HttpMethod, url: string) =>
  http.request(url, { method });

Source

src/types/http.ts:49

MIT License