/** * HTTP methods as defined in RFC 9110 and other RFCs. * See: https://www.iana.org/assignments/http-methods/http-methods.xhtml * * @example * ```ts * import { httpMethod } from 'http-codex/method' * * const method = httpMethod.GET // 'GET' * ``` */ export declare const httpMethod: { /** RFC 9110, 9.3.1 */ readonly GET: "GET"; /** RFC 9110, 9.3.2 */ readonly HEAD: "HEAD"; /** RFC 9110, 9.3.3 */ readonly POST: "POST"; /** RFC 9110, 9.3.4 */ readonly PUT: "PUT"; /** RFC 5789 */ readonly PATCH: "PATCH"; /** RFC 9110, 9.3.5 */ readonly DELETE: "DELETE"; /** RFC 9110, 9.3.6 */ readonly CONNECT: "CONNECT"; /** RFC 9110, 9.3.7 */ readonly OPTIONS: "OPTIONS"; /** RFC 9110, 9.3.8 */ readonly TRACE: "TRACE"; }; export type HttpMethod = keyof typeof httpMethod; //# sourceMappingURL=method.d.ts.map