@glandjs/http
Version:
A protocol adapter for HTTP built on top of the Gland architecture solution.
19 lines (18 loc) • 375 B
TypeScript
export declare enum RequestMethod {
GET = "GET",
POST = "POST",
PUT = "PUT",
DELETE = "DELETE",
PATCH = "PATCH",
ALL = "ALL",
OPTIONS = "OPTIONS",
HEAD = "HEAD",
SEARCH = "SEARCH",
PROPFIND = "PROPFIND",
PROPPATCH = "PROPPATCH",
MKCOL = "MKCOL",
COPY = "COPY",
MOVE = "MOVE",
LOCK = "LOCK",
UNLOCK = "UNLOCK"
}