UNPKG

@tunframework/tun

Version:

tun framework for node with typescript

18 lines (17 loc) 400 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.HttpMethod = void 0; /** * @see https://developer.mozilla.org/en-US/docs/Web/HTTP/Methods */ exports.HttpMethod = { GET: 'GET', HEAD: 'HEAD', POST: 'POST', PUT: 'PUT', DELETE: 'DELETE', CONNECT: 'CONNECT', OPTIONS: 'OPTIONS', TRACE: 'TRACE', PATCH: 'PATCH' };