mirror of
https://github.com/nestjs/nest.git
synced 2026-02-21 23:11:44 +00:00
11 lines
137 B
TypeScript
11 lines
137 B
TypeScript
export declare enum RequestMethod {
|
|
GET = 0,
|
|
POST = 1,
|
|
PUT = 2,
|
|
DELETE = 3,
|
|
PATCH = 4,
|
|
ALL = 5,
|
|
OPTIONS = 6,
|
|
HEAD = 7,
|
|
}
|