summaryrefslogtreecommitdiff
path: root/u/server/http/method.ts
blob: 172d77a01383dfee78af2cc3b8e42dcb4841fe9f (plain)
1
export type HttpMethod = 'POST' | 'GET' | 'HEAD' | 'PUT' | 'DELETE' | 'CONNECT' | 'OPTIONS' | 'TRACE' | 'PATCH';