mirror of
https://github.com/stack-auth/stack.git
synced 2026-06-13 21:01:21 +08:00
3 lines
173 B
TypeScript
3 lines
173 B
TypeScript
export const HTTP_METHODS = ["GET", "POST", "PUT", "DELETE", "PATCH", "OPTIONS", "HEAD", "TRACE", "CONNECT"] as const;
|
|
export type HttpMethod = typeof HTTP_METHODS[number];
|