/** * HTTP method types supported by the router. */ export type HttpMethod = "GET" | "POST" | "PUT" | "DELETE" | "PATCH" | "HEAD" | "OPTIONS"; //# sourceMappingURL=httpMethod.d.ts.map