UNPKG

711 BJavaScriptView Raw
1"use strict";
2Object.defineProperty(exports, "__esModule", { value: true });
3var RouteParamtypes;
4(function (RouteParamtypes) {
5 RouteParamtypes[RouteParamtypes["REQUEST"] = 0] = "REQUEST";
6 RouteParamtypes[RouteParamtypes["RESPONSE"] = 1] = "RESPONSE";
7 RouteParamtypes[RouteParamtypes["NEXT"] = 2] = "NEXT";
8 RouteParamtypes[RouteParamtypes["BODY"] = 3] = "BODY";
9 RouteParamtypes[RouteParamtypes["QUERY"] = 4] = "QUERY";
10 RouteParamtypes[RouteParamtypes["PARAM"] = 5] = "PARAM";
11 RouteParamtypes[RouteParamtypes["HEADERS"] = 6] = "HEADERS";
12 RouteParamtypes[RouteParamtypes["SESSION"] = 7] = "SESSION";
13})(RouteParamtypes = exports.RouteParamtypes || (exports.RouteParamtypes = {}));