UNPKG

@dvcol/common-utils

Version:

Typescript library for common utility functions and constants

17 lines (15 loc) 247 B
// lib/http/models/http-method.model.ts var HttpMethod = { GET: "GET", HEAD: "HEAD", POST: "POST", PUT: "PUT", PATCH: "PATCH", DELETE: "DELETE", CONNECT: "CONNECT", OPTIONS: "OPTIONS", TRACE: "TRACE" }; export { HttpMethod };