Files
evento/node_modules/@nestjs/common/enums/request-method.enum.d.ts
2026-03-18 14:55:56 -03:00

19 lines
284 B
TypeScript

export declare enum RequestMethod {
GET = 0,
POST = 1,
PUT = 2,
DELETE = 3,
PATCH = 4,
ALL = 5,
OPTIONS = 6,
HEAD = 7,
SEARCH = 8,
PROPFIND = 9,
PROPPATCH = 10,
MKCOL = 11,
COPY = 12,
MOVE = 13,
LOCK = 14,
UNLOCK = 15
}