UNPKG

alepha

Version:

Easy-to-use modern TypeScript framework for building many kind of applications.

15 lines (13 loc) 234 B
export const routeMethods = [ // list of supported http methods "GET", "POST", "PUT", "PATCH", "DELETE", "HEAD", "OPTIONS", "CONNECT", "TRACE", ] as const; export type RouteMethod = (typeof routeMethods)[number];