mirror of
https://github.com/swc-project/swc.git
synced 2024-12-21 04:32:01 +03:00
13 lines
244 B
TypeScript
13 lines
244 B
TypeScript
// Loaded from https://deno.land/x/abc@v1.2.4/_http_method.ts
|
|
|
|
|
|
export const Get = "GET",
|
|
Head = "HEAD",
|
|
Post = "POST",
|
|
Put = "PUT",
|
|
Patch = "PATCH",
|
|
Delete = "DELETE",
|
|
Connect = "CONNECT",
|
|
Options = "OPTIONS",
|
|
Trace = "TRACE";
|