---
title: RequestMethod
---

# RequestMethod

<a href="https://github.com/remix-run/remix/blob/remix@3.0.0-alpha.6/packages/fetch-router/src/lib/request-methods.ts#L11" target="_blank">View Source</a>

## Summary

All HTTP request methods supported by the router.

## Signature

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

```