summaryrefslogtreecommitdiff
path: root/lib/server/http/method.ts
diff options
context:
space:
mode:
Diffstat (limited to 'lib/server/http/method.ts')
-rw-r--r--lib/server/http/method.ts1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/server/http/method.ts b/lib/server/http/method.ts
new file mode 100644
index 0000000..172d77a
--- /dev/null
+++ b/lib/server/http/method.ts
@@ -0,0 +1 @@
+export type HttpMethod = 'POST' | 'GET' | 'HEAD' | 'PUT' | 'DELETE' | 'CONNECT' | 'OPTIONS' | 'TRACE' | 'PATCH';