---
title: RequestMethod
source: https://github.com/remix-run/remix/blob/main/packages/routes/src/lib/request-methods.ts#L15
---

# RequestMethod

## Summary

All HTTP request methods supported by the router.

## Signature

```ts
type RequestMethod =
  | "GET"
  | "HEAD"
  | "POST"
  | "PUT"
  | "PATCH"
  | "DELETE"
  | "OPTIONS";

```