fhirtypes
Version:
17 lines (16 loc) • 420 B
TypeScript
/**
* @name HTTPVerb
* @description HTTP verbs (in the HTTP command line).
* @description GET | HEAD | POST | PUT | DELETE | PATCH
* @see <a href="https://hl7.org/fhir/R4/valueset-http-verb.html">HTTPVerb</a>
* @version R4
* @author Roberto Araneda Espinoza
*/
export declare enum HTTPVerbEnum {
GET = "GET",
HEAD = "HEAD",
POST = "POST",
PUT = "PUT",
DELETE = "DELETE",
PATCH = "PATCH"
}