UNPKG

@tunframework/tun

Version:

tun framework for node with typescript

15 lines (14 loc) 296 B
/** * @see https://developer.mozilla.org/en-US/docs/Web/HTTP/Methods */ export const HttpMethod = { GET: 'GET', HEAD: 'HEAD', POST: 'POST', PUT: 'PUT', DELETE: 'DELETE', CONNECT: 'CONNECT', OPTIONS: 'OPTIONS', TRACE: 'TRACE', PATCH: 'PATCH' };