openresty-lua-types
Version:
Typescript types for openresty (ngx_http_lua_module), designed to be used with TypeScriptToLua
10 lines (9 loc) • 352 B
TypeScript
type tRequestMethod = number & { _ngx_tRequestMethod: never };
interface RequestMethodConstants {
readonly HTTP_GET: tRequestMethod;
readonly HTTP_HEAD: tRequestMethod;
readonly HTTP_PUT: tRequestMethod;
readonly HTTP_POST: tRequestMethod;
readonly HTTP_DELETE: tRequestMethod;
readonly HTTP_OPTIONS: tRequestMethod;
}