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

# RequestMethods

## Summary

All HTTP request methods that are supported by the router.

## Signature

```ts
const RequestMethods: readonly [
  "GET",
  "HEAD",
  "POST",
  "PUT",
  "PATCH",
  "DELETE",
  "OPTIONS",
];

```