RequestMethod

View Source

Summary

All HTTP request methods supported by the router.

Signature

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