You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

18 lines
284 B

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
}