From 278a7893cac4fecdb9de64c7a061d0eab8b57d52 Mon Sep 17 00:00:00 2001 From: Ardalan Amini Date: Tue, 21 Aug 2018 02:26:13 +0430 Subject: [PATCH] WIP --- CHANGELOG.md | 140 +- demo/index.js | 2 - docs/assets/js/search.js | 2 +- docs/classes/encapsulation.html | 36 +- docs/classes/engine.html | 24 +- docs/classes/foxify.html | 216 +- docs/classes/httpexception.html | 110 +- docs/classes/request.html | 3334 +++++++++++++ docs/classes/response.html | 4233 +++++++++++++++++ docs/classes/route.html | 123 +- docs/classes/router.html | 40 +- docs/classes/server.html | 40 +- docs/globals.html | 257 +- docs/index.html | 99 +- docs/interfaces/__global.nodejs.global.html | 7 +- docs/interfaces/_http_.incomingmessage.html | 706 --- docs/interfaces/_http_.serverresponse.html | 1150 ----- docs/interfaces/foxify.options.html | 34 +- docs/interfaces/foxify.settings.html | 48 +- docs/interfaces/route.jsonschema.html | 24 +- .../route.jsonschemaproperties.html | 12 +- docs/interfaces/route.methodfunctions.html | 64 +- docs/interfaces/route.routeobject.html | 18 +- docs/interfaces/route.routeoptions.html | 14 +- docs/interfaces/route.routes.html | 64 +- docs/interfaces/route.schema.html | 14 +- docs/interfaces/server.options.html | 35 +- docs/interfaces/server.settings.html | 51 +- docs/modules/__global.html | 7 +- docs/modules/__global.nodejs.html | 3 - docs/modules/_http_.html | 189 - package-lock.json | 110 +- package.json | 12 +- src/Request.ts | 340 ++ src/Response.ts | 937 ++++ src/Server.ts | 29 +- src/exceptions/Encapsulation.ts | 9 +- src/exceptions/HttpException.ts | 12 +- src/exceptions/htmlError.ts | 2 +- src/global.d.ts | 3 +- src/index.ts | 32 +- src/middleware/init.ts | 28 - src/middleware/query.ts | 16 - src/{middleware => middlewares}/index.ts | 2 - src/middlewares/init.ts | 37 + src/patches/index.ts | 7 - src/patches/request.ts | 359 -- src/patches/response.ts | 1027 ---- src/routing/Route.ts | 51 +- src/routing/Router.ts | 24 +- src/utils.ts | 2 +- tslint.json | 14 +- 52 files changed, 9760 insertions(+), 4389 deletions(-) create mode 100644 docs/classes/request.html create mode 100644 docs/classes/response.html delete mode 100644 docs/interfaces/_http_.incomingmessage.html delete mode 100644 docs/interfaces/_http_.serverresponse.html delete mode 100644 docs/modules/_http_.html create mode 100644 src/Request.ts create mode 100644 src/Response.ts delete mode 100644 src/middleware/init.ts delete mode 100644 src/middleware/query.ts rename src/{middleware => middlewares}/index.ts (55%) create mode 100644 src/middlewares/init.ts delete mode 100644 src/patches/index.ts delete mode 100644 src/patches/request.ts delete mode 100644 src/patches/response.ts diff --git a/CHANGELOG.md b/CHANGELOG.md index 745c946..a8cf422 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,103 +1,97 @@ # Changelog -## [v0.8.0](https://github.com/foxifyjs/foxify/releases/tag/v0.8.0) - *2018-07-09* +## Emojis -**Implemented enhancements:** +- New Features -> :zap: +- Enhancements -> :star2: +- Breaking Changes -> :boom: +- Bugs -> :beetle: +- Pull Requests -> :book: +- Documents -> :mortar_board: +- Tests -> :eyeglasses: -- added `https` option -- added `https.key` setting -- added `https.cert` setting -- added `json schema` option to routing -- added `stop` ability -- added `reload` ability -- improved performance +--- -## [v0.7.0](https://github.com/foxifyjs/foxify/releases/tag/v0.7.0) - *2018-05-19* +## [v0.9.0](https://github.com/foxifyjs/foxify/releases/tag/v0.9.0) - *(2018-08-21)* -**Implemented enhancements:** +- :zap: Added `subdomain.offset` setting +- :zap: Added `subdomains` getter to `http.IncomingMessage` +- :star2: Made `http` constants global by `HTTP` name +- :star2: Improved performance +- :boom: Removed `content-length` option (and content-length calculation) +- :beetle: Fixed route with prefix `use` not applying prefix bug +- :beetle: Fixed typescript usage -- added `content-length` option -- moved `Database` to a new repository named [Odin](https://github.com/foxifyjs/odin) -- improved performance +## [v0.8.0](https://github.com/foxifyjs/foxify/releases/tag/v0.8.0) - *(2018-07-09)* -## [v0.6.0](https://github.com/foxifyjs/foxify/releases/tag/v0.6.0) - *2018-03-26* +- :zap: Added `https` option +- :zap: Added `https.key` setting +- :zap: Added `https.cert` setting +- :zap: Added json schema validation option to routing +- :zap: Added `stop` ability to server +- :zap: Added `reload` ability to server +- :star2: Improved performance -**Implemented enhancements:** +## [v0.7.0](https://github.com/foxifyjs/foxify/releases/tag/v0.7.0) - *(2018-05-19)* -- added multiple `controller` support to `route` instance -- added static method `dotenv` to `Foxify` class to specify `.env` file path -- added method `of` to database type `Array` -- added `function` support to default values in database types -- added `graphql` support to database models -- improved performance -- improved `Typescript` usage +- :zap: Added `content-length` option +- :boom: Moved `Database` to a new repository named [Odin](https://github.com/foxifyjs/odin) +- :star2: Improved performance -## [v0.5.1](https://github.com/foxifyjs/foxify/releases/tag/v0.5.1) - *2018-03-10* +## [v0.6.0](https://github.com/foxifyjs/foxify/releases/tag/v0.6.0) - *(2018-03-26)* -**Implemented enhancements:** +- :zap: Added multiple `controller` support to `route` instance +- :zap: Added static method `dotenv` to `Foxify` class to specify `.env` file path +- :zap: Added method `of` to database type `Array` +- :zap: Added `function` support to default values in database types +- :zap: Added `graphql` support to database models +- :star2: Improved `Typescript` usage +- :star2: Improved performance -- renamed `clusters` setting into `workers` +## [v0.5.1](https://github.com/foxifyjs/foxify/releases/tag/v0.5.1) - *(2018-03-10)* -## [v0.5.0](https://github.com/foxifyjs/foxify/releases/tag/v0.5.0) - *2018-03-08* +- :boom: Renamed `clusters` setting into `workers` -**Implemented enhancements:** +## [v0.5.0](https://github.com/foxifyjs/foxify/releases/tag/v0.5.0) - *(2018-03-08)* -- added clustering -- added multiple model relations [`hasOne`, `hasMany`] -- added multiple options [`x-powered-by`, `routing.strict`, `routing.sensitive`, `json.escape`] -- added multiple settings [`env`, `url`, `port`, `clusters`, `json.replacer`, `json.spaces`, `query.parser`] -- improved usage +- :zap: Added clustering +- :zap: Added multiple model relations [`hasOne`, `hasMany`] +- :zap: Added multiple options [`x-powered-by`, `routing.strict`, `routing.sensitive`, `json.escape`] +- :zap: Added multiple settings [`env`, `url`, `port`, `clusters`, `json.replacer`, `json.spaces`, `query.parser`] +- :star2: Improved usage -## [v0.4.0](https://github.com/foxifyjs/foxify/releases/tag/v0.4.0) - *2018-02-22* +## [v0.4.0](https://github.com/foxifyjs/foxify/releases/tag/v0.4.0) - *(2018-02-22)* -**Implemented enhancements:** +- :zap: Logging errors when `NODE_ENV` is set to `debug` +- :star2: Improved performance +- :star2: Improved error responses +- :star2: Improved database schema validation +- :beetle: Wrong database name according to model name -- improved performance -- improved error responses -- improved database schema validation -- logging errors when `NODE_ENV` is set to `debug` +## [v0.3.2](https://github.com/foxifyjs/foxify/releases/tag/v0.3.2) - *(2018-02-20)* -**Fixed bugs:** +- :star2: Improved database model schema validation +- :beetle: Database model schema validation instance +- :beetle: Default database connection when there is no `.env` file -- wrong database name according to model name +## [v0.3.0](https://github.com/foxifyjs/foxify/releases/tag/v0.3.0) - *(2018-02-18)* -## [v0.3.2](https://github.com/foxifyjs/foxify/releases/tag/v0.3.2) - *2018-02-20* +- :zap: Added simple database model schema validation +- :star2: Default database connection will be set according to `.env` file -**Implemented enhancements:** +## [v0.2.1](https://github.com/foxifyjs/foxify/releases/tag/v0.2.1) - *(2018-02-14)* -- improved database model schema validation +- :beetle: Encapsulation -**Fixed bugs:** +## [v0.2.0](https://github.com/foxifyjs/foxify/releases/tag/v0.2.0) - *(2018-02-10)* -- database model schema validation instance -- default database connection when there is no `.env` file +- :star2: Routing speed got doubled +- :star2: Http routing methods are accessible from app too -## [v0.3.0](https://github.com/foxifyjs/foxify/releases/tag/v0.3.0) - *2018-02-18* +## [v0.1.1](https://github.com/foxifyjs/foxify/releases/tag/v0.1.1) - *(2018-02-10)* -**Implemented enhancements:** +- :beetle: Fixed #1 -- added simple database model schema validation -- Default database connection will be set according to `.env` file +## [v0.1.0](https://github.com/foxifyjs/foxify/releases/tag/v0.1.0) - *(2018-02-09)* -## [v0.2.1](https://github.com/foxifyjs/foxify/releases/tag/v0.2.1) - *2018-02-14* - -**Fixed bugs:** - -- Encapsulation - -## [v0.2.0](https://github.com/foxifyjs/foxify/releases/tag/v0.2.0) - *2018-02-10* - -**Implemented enhancements:** - -- routing speed got doubled -- http routing methods are accessible from app too - -## [v0.1.1](https://github.com/foxifyjs/foxify/releases/tag/v0.1.1) - *2018-02-10* - -**Closed issues:** - -- Fixed #1 - -## [v0.1.0](https://github.com/foxifyjs/foxify/releases/tag/v0.1.0) - *2018-02-09* - -First Release +- :tada: First Release diff --git a/demo/index.js b/demo/index.js index 9d0020a..fbbd7d8 100644 --- a/demo/index.js +++ b/demo/index.js @@ -7,8 +7,6 @@ Foxify.dotenv(path.join(__dirname, ".env")); const app = new Foxify(); -app.disable("content-length"); - // template engine support app.engine("ejs", path.join(__dirname, "views"), require("ejs").__express) diff --git a/docs/assets/js/search.js b/docs/assets/js/search.js index 102640f..e758b6c 100644 --- a/docs/assets/js/search.js +++ b/docs/assets/js/search.js @@ -1,3 +1,3 @@ var typedoc = typedoc || {}; typedoc.search = typedoc.search || {}; - typedoc.search.data = {"kinds":{"2":"Module","32":"Variable","64":"Function","128":"Class","256":"Interface","512":"Constructor","1024":"Property","2048":"Method","65536":"Type literal","262144":"Accessor","2097152":"Object literal","4194304":"Type alias"},"rows":[{"id":0,"kind":2097152,"name":"HTTP","url":"globals.html#http","classes":"tsd-kind-object-literal"},{"id":1,"kind":32,"name":"CONTINUE","url":"globals.html#http.continue","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"HTTP"},{"id":2,"kind":32,"name":"SWITCHING_PROTOCOL","url":"globals.html#http.switching_protocol","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"HTTP"},{"id":3,"kind":32,"name":"PROCESSING","url":"globals.html#http.processing","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"HTTP"},{"id":4,"kind":32,"name":"EARLY_HINTS","url":"globals.html#http.early_hints","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"HTTP"},{"id":5,"kind":32,"name":"OK","url":"globals.html#http.ok","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"HTTP"},{"id":6,"kind":32,"name":"CREATED","url":"globals.html#http.created","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"HTTP"},{"id":7,"kind":32,"name":"ACCEPTED","url":"globals.html#http.accepted","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"HTTP"},{"id":8,"kind":32,"name":"NON_AUTHORITATIVE_INFORMATION","url":"globals.html#http.non_authoritative_information","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"HTTP"},{"id":9,"kind":32,"name":"NO_CONTENT","url":"globals.html#http.no_content","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"HTTP"},{"id":10,"kind":32,"name":"RESET_CONTENT","url":"globals.html#http.reset_content","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"HTTP"},{"id":11,"kind":32,"name":"PARTIAL_CONTENT","url":"globals.html#http.partial_content","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"HTTP"},{"id":12,"kind":32,"name":"MULTI_STATUS","url":"globals.html#http.multi_status","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"HTTP"},{"id":13,"kind":32,"name":"ALREADY_REPORTED","url":"globals.html#http.already_reported","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"HTTP"},{"id":14,"kind":32,"name":"IM_USED","url":"globals.html#http.im_used","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"HTTP"},{"id":15,"kind":32,"name":"MULTIPLE_CHOICES","url":"globals.html#http.multiple_choices","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"HTTP"},{"id":16,"kind":32,"name":"MOVED_PERMANENTLY","url":"globals.html#http.moved_permanently","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"HTTP"},{"id":17,"kind":32,"name":"FOUND","url":"globals.html#http.found","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"HTTP"},{"id":18,"kind":32,"name":"SEE_OTHER","url":"globals.html#http.see_other","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"HTTP"},{"id":19,"kind":32,"name":"NOT_MODIFIED","url":"globals.html#http.not_modified","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"HTTP"},{"id":20,"kind":32,"name":"USE_PROXY","url":"globals.html#http.use_proxy","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"HTTP"},{"id":21,"kind":32,"name":"SWITCH_PROXY","url":"globals.html#http.switch_proxy","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"HTTP"},{"id":22,"kind":32,"name":"TEMPORARY_REDIRECT","url":"globals.html#http.temporary_redirect","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"HTTP"},{"id":23,"kind":32,"name":"PERMANENT_REDIRECT","url":"globals.html#http.permanent_redirect","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"HTTP"},{"id":24,"kind":32,"name":"BAD_REQUEST","url":"globals.html#http.bad_request","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"HTTP"},{"id":25,"kind":32,"name":"UNAUTHORIZED","url":"globals.html#http.unauthorized","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"HTTP"},{"id":26,"kind":32,"name":"PAYMENT_REQUIRED","url":"globals.html#http.payment_required","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"HTTP"},{"id":27,"kind":32,"name":"FORBIDEN","url":"globals.html#http.forbiden","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"HTTP"},{"id":28,"kind":32,"name":"NOT_FOUND","url":"globals.html#http.not_found","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"HTTP"},{"id":29,"kind":32,"name":"METHOD_NOT_ALLOWED","url":"globals.html#http.method_not_allowed","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"HTTP"},{"id":30,"kind":32,"name":"NOT_ACCEPTABLE","url":"globals.html#http.not_acceptable","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"HTTP"},{"id":31,"kind":32,"name":"PROXY_AUTHENTICATION_REQUIRED","url":"globals.html#http.proxy_authentication_required","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"HTTP"},{"id":32,"kind":32,"name":"REQUEST_TIMEOUT","url":"globals.html#http.request_timeout","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"HTTP"},{"id":33,"kind":32,"name":"CONFLICT","url":"globals.html#http.conflict","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"HTTP"},{"id":34,"kind":32,"name":"GONE","url":"globals.html#http.gone","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"HTTP"},{"id":35,"kind":32,"name":"LENGTH_REQUIRED","url":"globals.html#http.length_required","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"HTTP"},{"id":36,"kind":32,"name":"PRECONDITION_FAILED","url":"globals.html#http.precondition_failed","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"HTTP"},{"id":37,"kind":32,"name":"PAYLOAD_TOO_LARGE","url":"globals.html#http.payload_too_large","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"HTTP"},{"id":38,"kind":32,"name":"URI_TOO_LONG","url":"globals.html#http.uri_too_long","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"HTTP"},{"id":39,"kind":32,"name":"UNSUPPORTED_MEDIA_TYPE","url":"globals.html#http.unsupported_media_type","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"HTTP"},{"id":40,"kind":32,"name":"RANGE_NOT_SATISFIABLE","url":"globals.html#http.range_not_satisfiable","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"HTTP"},{"id":41,"kind":32,"name":"EXPECTATION_FAILED","url":"globals.html#http.expectation_failed","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"HTTP"},{"id":42,"kind":32,"name":"IM_A_TEAPOT","url":"globals.html#http.im_a_teapot","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"HTTP"},{"id":43,"kind":32,"name":"MISDIRECET_REQUEST","url":"globals.html#http.misdirecet_request","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"HTTP"},{"id":44,"kind":32,"name":"UNPROCESSABLE_ENTITY","url":"globals.html#http.unprocessable_entity","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"HTTP"},{"id":45,"kind":32,"name":"LOCKED","url":"globals.html#http.locked","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"HTTP"},{"id":46,"kind":32,"name":"FAILED_DEPENDENCY","url":"globals.html#http.failed_dependency","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"HTTP"},{"id":47,"kind":32,"name":"UPGRADE_REQUIRED","url":"globals.html#http.upgrade_required","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"HTTP"},{"id":48,"kind":32,"name":"PRECONDITION_REQUIRED","url":"globals.html#http.precondition_required","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"HTTP"},{"id":49,"kind":32,"name":"TOO_MANY_REQUESTS","url":"globals.html#http.too_many_requests","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"HTTP"},{"id":50,"kind":32,"name":"REQUEST_HEADER_FIELDS_TOO_LARGE","url":"globals.html#http.request_header_fields_too_large","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"HTTP"},{"id":51,"kind":32,"name":"UNAVAILABLE_FOR_LEGAL_REASONS","url":"globals.html#http.unavailable_for_legal_reasons","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"HTTP"},{"id":52,"kind":32,"name":"INTERNAL_SERVER_ERROR","url":"globals.html#http.internal_server_error","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"HTTP"},{"id":53,"kind":32,"name":"NOT_IMPLEMENTED","url":"globals.html#http.not_implemented","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"HTTP"},{"id":54,"kind":32,"name":"BAD_GATEWAY","url":"globals.html#http.bad_gateway","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"HTTP"},{"id":55,"kind":32,"name":"SERVICE_UNAVAILABLE","url":"globals.html#http.service_unavailable","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"HTTP"},{"id":56,"kind":32,"name":"GATEWAY_TIMEOUT","url":"globals.html#http.gateway_timeout","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"HTTP"},{"id":57,"kind":32,"name":"HTTP_VERSION_NOT_SUPPORTED","url":"globals.html#http.http_version_not_supported","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"HTTP"},{"id":58,"kind":32,"name":"VARIANT_ALSO_NEGOTIATES","url":"globals.html#http.variant_also_negotiates","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"HTTP"},{"id":59,"kind":32,"name":"INSUFFICIENT_STORAGE","url":"globals.html#http.insufficient_storage","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"HTTP"},{"id":60,"kind":32,"name":"LOOP_DETECTED","url":"globals.html#http.loop_detected","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"HTTP"},{"id":61,"kind":32,"name":"NOT_EXTENDED","url":"globals.html#http.not_extended","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"HTTP"},{"id":62,"kind":32,"name":"NETWORK_AUTHENTICATION_REQUIRED","url":"globals.html#http.network_authentication_required","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"HTTP"},{"id":63,"kind":64,"name":"mixins","url":"globals.html#mixins","classes":"tsd-kind-function"},{"id":64,"kind":64,"name":"define","url":"globals.html#define","classes":"tsd-kind-function"},{"id":65,"kind":2,"name":"\"http\"","url":"modules/_http_.html","classes":"tsd-kind-module tsd-is-not-exported"},{"id":66,"kind":256,"name":"IncomingMessage","url":"interfaces/_http_.incomingmessage.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"\"http\""},{"id":67,"kind":1024,"name":"res","url":"interfaces/_http_.incomingmessage.html#res","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"http\".IncomingMessage"},{"id":68,"kind":1024,"name":"fresh","url":"interfaces/_http_.incomingmessage.html#fresh","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"http\".IncomingMessage"},{"id":69,"kind":1024,"name":"hostname","url":"interfaces/_http_.incomingmessage.html#hostname","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"http\".IncomingMessage"},{"id":70,"kind":1024,"name":"path","url":"interfaces/_http_.incomingmessage.html#path","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"http\".IncomingMessage"},{"id":71,"kind":1024,"name":"query","url":"interfaces/_http_.incomingmessage.html#query","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"http\".IncomingMessage"},{"id":72,"kind":1024,"name":"stale","url":"interfaces/_http_.incomingmessage.html#stale","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"http\".IncomingMessage"},{"id":73,"kind":1024,"name":"xhr","url":"interfaces/_http_.incomingmessage.html#xhr","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"http\".IncomingMessage"},{"id":74,"kind":1024,"name":"head","url":"interfaces/_http_.incomingmessage.html#head","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"http\".IncomingMessage"},{"id":75,"kind":2048,"name":"accepts","url":"interfaces/_http_.incomingmessage.html#accepts","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"\"http\".IncomingMessage"},{"id":76,"kind":2048,"name":"acceptsCharsets","url":"interfaces/_http_.incomingmessage.html#acceptscharsets","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"\"http\".IncomingMessage"},{"id":77,"kind":2048,"name":"acceptsEncodings","url":"interfaces/_http_.incomingmessage.html#acceptsencodings","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"\"http\".IncomingMessage"},{"id":78,"kind":2048,"name":"acceptsLanguages","url":"interfaces/_http_.incomingmessage.html#acceptslanguages","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"\"http\".IncomingMessage"},{"id":79,"kind":2048,"name":"get","url":"interfaces/_http_.incomingmessage.html#get","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"\"http\".IncomingMessage"},{"id":80,"kind":2048,"name":"is","url":"interfaces/_http_.incomingmessage.html#is","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"\"http\".IncomingMessage"},{"id":81,"kind":2048,"name":"next","url":"interfaces/_http_.incomingmessage.html#next","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"\"http\".IncomingMessage"},{"id":82,"kind":2048,"name":"range","url":"interfaces/_http_.incomingmessage.html#range","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"\"http\".IncomingMessage"},{"id":83,"kind":64,"name":"patch","url":"globals.html#patch","classes":"tsd-kind-function"},{"id":84,"kind":128,"name":"Engine","url":"classes/engine.html","classes":"tsd-kind-class"},{"id":85,"kind":1024,"name":"_path","url":"classes/engine.html#_path","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-protected","parent":"Engine"},{"id":86,"kind":1024,"name":"_ext","url":"classes/engine.html#_ext","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-protected","parent":"Engine"},{"id":87,"kind":1024,"name":"_handler","url":"classes/engine.html#_handler","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-protected","parent":"Engine"},{"id":88,"kind":65536,"name":"__type","url":"classes/engine.html#_handler.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-property","parent":"Engine._handler"},{"id":89,"kind":512,"name":"constructor","url":"classes/engine.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"Engine"},{"id":90,"kind":2048,"name":"render","url":"classes/engine.html#render","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Engine"},{"id":91,"kind":4194304,"name":"Callback","url":"classes/engine.html#callback","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"Engine"},{"id":92,"kind":65536,"name":"__type","url":"classes/engine.html#callback.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"Engine.Callback"},{"id":93,"kind":256,"name":"ServerResponse","url":"interfaces/_http_.serverresponse.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"\"http\""},{"id":94,"kind":1024,"name":"req","url":"interfaces/_http_.serverresponse.html#req","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"http\".ServerResponse"},{"id":95,"kind":1024,"name":"set","url":"interfaces/_http_.serverresponse.html#set","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"http\".ServerResponse"},{"id":96,"kind":1024,"name":"type","url":"interfaces/_http_.serverresponse.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"http\".ServerResponse"},{"id":97,"kind":2048,"name":"append","url":"interfaces/_http_.serverresponse.html#append","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"\"http\".ServerResponse"},{"id":98,"kind":2048,"name":"attachment","url":"interfaces/_http_.serverresponse.html#attachment","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"\"http\".ServerResponse"},{"id":99,"kind":2048,"name":"clearCookie","url":"interfaces/_http_.serverresponse.html#clearcookie","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"\"http\".ServerResponse"},{"id":100,"kind":2048,"name":"contentType","url":"interfaces/_http_.serverresponse.html#contenttype","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"\"http\".ServerResponse"},{"id":101,"kind":2048,"name":"cookie","url":"interfaces/_http_.serverresponse.html#cookie","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"\"http\".ServerResponse"},{"id":102,"kind":2048,"name":"download","url":"interfaces/_http_.serverresponse.html#download","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"\"http\".ServerResponse"},{"id":103,"kind":2048,"name":"format","url":"interfaces/_http_.serverresponse.html#format","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"\"http\".ServerResponse"},{"id":104,"kind":2048,"name":"get","url":"interfaces/_http_.serverresponse.html#get","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"\"http\".ServerResponse"},{"id":105,"kind":2048,"name":"header","url":"interfaces/_http_.serverresponse.html#header","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"\"http\".ServerResponse"},{"id":106,"kind":2048,"name":"json","url":"interfaces/_http_.serverresponse.html#json","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"\"http\".ServerResponse"},{"id":107,"kind":2048,"name":"jsonp","url":"interfaces/_http_.serverresponse.html#jsonp","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"\"http\".ServerResponse"},{"id":108,"kind":2048,"name":"links","url":"interfaces/_http_.serverresponse.html#links","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"\"http\".ServerResponse"},{"id":109,"kind":2048,"name":"location","url":"interfaces/_http_.serverresponse.html#location","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"\"http\".ServerResponse"},{"id":110,"kind":2048,"name":"redirect","url":"interfaces/_http_.serverresponse.html#redirect","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"\"http\".ServerResponse"},{"id":111,"kind":2048,"name":"render","url":"interfaces/_http_.serverresponse.html#render","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"\"http\".ServerResponse"},{"id":112,"kind":2048,"name":"send","url":"interfaces/_http_.serverresponse.html#send","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"\"http\".ServerResponse"},{"id":113,"kind":2048,"name":"sendFile","url":"interfaces/_http_.serverresponse.html#sendfile","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"\"http\".ServerResponse"},{"id":114,"kind":2048,"name":"sendStatus","url":"interfaces/_http_.serverresponse.html#sendstatus","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"\"http\".ServerResponse"},{"id":115,"kind":2048,"name":"status","url":"interfaces/_http_.serverresponse.html#status","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"\"http\".ServerResponse"},{"id":116,"kind":2048,"name":"vary","url":"interfaces/_http_.serverresponse.html#vary","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"\"http\".ServerResponse"},{"id":117,"kind":32,"name":"resolve","url":"globals.html#resolve","classes":"tsd-kind-variable tsd-is-not-exported"},{"id":118,"kind":32,"name":"STATUS_CODES","url":"globals.html#status_codes","classes":"tsd-kind-variable tsd-is-not-exported"},{"id":119,"kind":65536,"name":"__type","url":"globals.html#status_codes.__type","classes":"tsd-kind-type-literal tsd-parent-kind-variable tsd-is-not-exported","parent":"STATUS_CODES"},{"id":120,"kind":32,"name":"charsetRegExp","url":"globals.html#charsetregexp","classes":"tsd-kind-variable tsd-is-not-exported"},{"id":121,"kind":64,"name":"setCharset","url":"globals.html#setcharset","classes":"tsd-kind-function tsd-is-not-exported"},{"id":122,"kind":64,"name":"stringify","url":"globals.html#stringify","classes":"tsd-kind-function tsd-is-private tsd-is-not-exported"},{"id":123,"kind":64,"name":"isAbsolute","url":"globals.html#isabsolute","classes":"tsd-kind-function tsd-is-not-exported"},{"id":124,"kind":64,"name":"sendfile","url":"globals.html#sendfile","classes":"tsd-kind-function tsd-is-not-exported"},{"id":125,"kind":64,"name":"acceptParams","url":"globals.html#acceptparams","classes":"tsd-kind-function tsd-is-not-exported"},{"id":126,"kind":64,"name":"normalizeType","url":"globals.html#normalizetype","classes":"tsd-kind-function tsd-is-not-exported"},{"id":127,"kind":64,"name":"normalizeTypes","url":"globals.html#normalizetypes","classes":"tsd-kind-function tsd-is-not-exported"},{"id":128,"kind":128,"name":"HttpException","url":"classes/httpexception.html","classes":"tsd-kind-class"},{"id":129,"kind":1024,"name":"code","url":"classes/httpexception.html#code","classes":"tsd-kind-property tsd-parent-kind-class","parent":"HttpException"},{"id":130,"kind":1024,"name":"errors","url":"classes/httpexception.html#errors","classes":"tsd-kind-property tsd-parent-kind-class","parent":"HttpException"},{"id":131,"kind":2048,"name":"handle","url":"classes/httpexception.html#handle","classes":"tsd-kind-method tsd-parent-kind-class","parent":"HttpException"},{"id":132,"kind":1024,"name":"name","url":"classes/httpexception.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"HttpException"},{"id":133,"kind":1024,"name":"message","url":"classes/httpexception.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"HttpException"},{"id":134,"kind":1024,"name":"stack","url":"classes/httpexception.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"HttpException"},{"id":135,"kind":1024,"name":"Error","url":"classes/httpexception.html#error","classes":"tsd-kind-property tsd-parent-kind-class","parent":"HttpException"},{"id":136,"kind":512,"name":"constructor","url":"classes/httpexception.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"HttpException"},{"id":137,"kind":2048,"name":"handle","url":"classes/httpexception.html#handle-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"HttpException"},{"id":138,"kind":1024,"name":"name","url":"classes/httpexception.html#name-1","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"HttpException"},{"id":139,"kind":1024,"name":"message","url":"classes/httpexception.html#message-1","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"HttpException"},{"id":140,"kind":1024,"name":"stack","url":"classes/httpexception.html#stack-1","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited tsd-is-static","parent":"HttpException"},{"id":141,"kind":1024,"name":"Error","url":"classes/httpexception.html#error-1","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"HttpException"},{"id":142,"kind":128,"name":"Encapsulation","url":"classes/encapsulation.html","classes":"tsd-kind-class"},{"id":143,"kind":1024,"name":"_fn","url":"classes/encapsulation.html#_fn","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-protected","parent":"Encapsulation"},{"id":144,"kind":65536,"name":"__type","url":"classes/encapsulation.html#_fn.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property","parent":"Encapsulation._fn"},{"id":145,"kind":512,"name":"constructor","url":"classes/encapsulation.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"Encapsulation"},{"id":146,"kind":2048,"name":"run","url":"classes/encapsulation.html#run","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Encapsulation"},{"id":147,"kind":2,"name":"__global","url":"modules/__global.html","classes":"tsd-kind-module tsd-is-not-exported"},{"id":148,"kind":2,"name":"NodeJS","url":"modules/__global.nodejs.html","classes":"tsd-kind-module tsd-parent-kind-module tsd-is-not-exported","parent":"__global"},{"id":149,"kind":256,"name":"Global","url":"interfaces/__global.nodejs.global.html","classes":"tsd-kind-interface tsd-parent-kind-module tsd-is-not-exported","parent":"__global.NodeJS"},{"id":150,"kind":1024,"name":"HttpException","url":"interfaces/__global.nodejs.global.html#httpexception","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-not-exported","parent":"__global.NodeJS.Global"},{"id":151,"kind":1024,"name":"HTTP","url":"interfaces/__global.nodejs.global.html#http","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-not-exported","parent":"__global.NodeJS.Global"},{"id":152,"kind":65536,"name":"__type","url":"interfaces/__global.nodejs.global.html#http.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property tsd-is-not-exported","parent":"__global.NodeJS.Global.HTTP"},{"id":153,"kind":32,"name":"CONTINUE","url":"interfaces/__global.nodejs.global.html#http.__type.continue","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.NodeJS.Global.HTTP.__type"},{"id":154,"kind":32,"name":"SWITCHING_PROTOCOL","url":"interfaces/__global.nodejs.global.html#http.__type.switching_protocol","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.NodeJS.Global.HTTP.__type"},{"id":155,"kind":32,"name":"PROCESSING","url":"interfaces/__global.nodejs.global.html#http.__type.processing","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.NodeJS.Global.HTTP.__type"},{"id":156,"kind":32,"name":"EARLY_HINTS","url":"interfaces/__global.nodejs.global.html#http.__type.early_hints","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.NodeJS.Global.HTTP.__type"},{"id":157,"kind":32,"name":"OK","url":"interfaces/__global.nodejs.global.html#http.__type.ok","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.NodeJS.Global.HTTP.__type"},{"id":158,"kind":32,"name":"CREATED","url":"interfaces/__global.nodejs.global.html#http.__type.created","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.NodeJS.Global.HTTP.__type"},{"id":159,"kind":32,"name":"ACCEPTED","url":"interfaces/__global.nodejs.global.html#http.__type.accepted","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.NodeJS.Global.HTTP.__type"},{"id":160,"kind":32,"name":"NON_AUTHORITATIVE_INFORMATION","url":"interfaces/__global.nodejs.global.html#http.__type.non_authoritative_information","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.NodeJS.Global.HTTP.__type"},{"id":161,"kind":32,"name":"NO_CONTENT","url":"interfaces/__global.nodejs.global.html#http.__type.no_content","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.NodeJS.Global.HTTP.__type"},{"id":162,"kind":32,"name":"RESET_CONTENT","url":"interfaces/__global.nodejs.global.html#http.__type.reset_content","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.NodeJS.Global.HTTP.__type"},{"id":163,"kind":32,"name":"PARTIAL_CONTENT","url":"interfaces/__global.nodejs.global.html#http.__type.partial_content","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.NodeJS.Global.HTTP.__type"},{"id":164,"kind":32,"name":"MULTI_STATUS","url":"interfaces/__global.nodejs.global.html#http.__type.multi_status","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.NodeJS.Global.HTTP.__type"},{"id":165,"kind":32,"name":"ALREADY_REPORTED","url":"interfaces/__global.nodejs.global.html#http.__type.already_reported","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.NodeJS.Global.HTTP.__type"},{"id":166,"kind":32,"name":"IM_USED","url":"interfaces/__global.nodejs.global.html#http.__type.im_used","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.NodeJS.Global.HTTP.__type"},{"id":167,"kind":32,"name":"MULTIPLE_CHOICES","url":"interfaces/__global.nodejs.global.html#http.__type.multiple_choices","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.NodeJS.Global.HTTP.__type"},{"id":168,"kind":32,"name":"MOVED_PERMANENTLY","url":"interfaces/__global.nodejs.global.html#http.__type.moved_permanently","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.NodeJS.Global.HTTP.__type"},{"id":169,"kind":32,"name":"FOUND","url":"interfaces/__global.nodejs.global.html#http.__type.found","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.NodeJS.Global.HTTP.__type"},{"id":170,"kind":32,"name":"SEE_OTHER","url":"interfaces/__global.nodejs.global.html#http.__type.see_other","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.NodeJS.Global.HTTP.__type"},{"id":171,"kind":32,"name":"NOT_MODIFIED","url":"interfaces/__global.nodejs.global.html#http.__type.not_modified","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.NodeJS.Global.HTTP.__type"},{"id":172,"kind":32,"name":"USE_PROXY","url":"interfaces/__global.nodejs.global.html#http.__type.use_proxy","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.NodeJS.Global.HTTP.__type"},{"id":173,"kind":32,"name":"SWITCH_PROXY","url":"interfaces/__global.nodejs.global.html#http.__type.switch_proxy","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.NodeJS.Global.HTTP.__type"},{"id":174,"kind":32,"name":"TEMPORARY_REDIRECT","url":"interfaces/__global.nodejs.global.html#http.__type.temporary_redirect","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.NodeJS.Global.HTTP.__type"},{"id":175,"kind":32,"name":"PERMANENT_REDIRECT","url":"interfaces/__global.nodejs.global.html#http.__type.permanent_redirect","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.NodeJS.Global.HTTP.__type"},{"id":176,"kind":32,"name":"BAD_REQUEST","url":"interfaces/__global.nodejs.global.html#http.__type.bad_request","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.NodeJS.Global.HTTP.__type"},{"id":177,"kind":32,"name":"UNAUTHORIZED","url":"interfaces/__global.nodejs.global.html#http.__type.unauthorized","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.NodeJS.Global.HTTP.__type"},{"id":178,"kind":32,"name":"PAYMENT_REQUIRED","url":"interfaces/__global.nodejs.global.html#http.__type.payment_required","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.NodeJS.Global.HTTP.__type"},{"id":179,"kind":32,"name":"FORBIDEN","url":"interfaces/__global.nodejs.global.html#http.__type.forbiden","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.NodeJS.Global.HTTP.__type"},{"id":180,"kind":32,"name":"NOT_FOUND","url":"interfaces/__global.nodejs.global.html#http.__type.not_found","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.NodeJS.Global.HTTP.__type"},{"id":181,"kind":32,"name":"METHOD_NOT_ALLOWED","url":"interfaces/__global.nodejs.global.html#http.__type.method_not_allowed","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.NodeJS.Global.HTTP.__type"},{"id":182,"kind":32,"name":"NOT_ACCEPTABLE","url":"interfaces/__global.nodejs.global.html#http.__type.not_acceptable","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.NodeJS.Global.HTTP.__type"},{"id":183,"kind":32,"name":"PROXY_AUTHENTICATION_REQUIRED","url":"interfaces/__global.nodejs.global.html#http.__type.proxy_authentication_required","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.NodeJS.Global.HTTP.__type"},{"id":184,"kind":32,"name":"REQUEST_TIMEOUT","url":"interfaces/__global.nodejs.global.html#http.__type.request_timeout","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.NodeJS.Global.HTTP.__type"},{"id":185,"kind":32,"name":"CONFLICT","url":"interfaces/__global.nodejs.global.html#http.__type.conflict","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.NodeJS.Global.HTTP.__type"},{"id":186,"kind":32,"name":"GONE","url":"interfaces/__global.nodejs.global.html#http.__type.gone","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.NodeJS.Global.HTTP.__type"},{"id":187,"kind":32,"name":"LENGTH_REQUIRED","url":"interfaces/__global.nodejs.global.html#http.__type.length_required","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.NodeJS.Global.HTTP.__type"},{"id":188,"kind":32,"name":"PRECONDITION_FAILED","url":"interfaces/__global.nodejs.global.html#http.__type.precondition_failed","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.NodeJS.Global.HTTP.__type"},{"id":189,"kind":32,"name":"PAYLOAD_TOO_LARGE","url":"interfaces/__global.nodejs.global.html#http.__type.payload_too_large","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.NodeJS.Global.HTTP.__type"},{"id":190,"kind":32,"name":"URI_TOO_LONG","url":"interfaces/__global.nodejs.global.html#http.__type.uri_too_long","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.NodeJS.Global.HTTP.__type"},{"id":191,"kind":32,"name":"UNSUPPORTED_MEDIA_TYPE","url":"interfaces/__global.nodejs.global.html#http.__type.unsupported_media_type","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.NodeJS.Global.HTTP.__type"},{"id":192,"kind":32,"name":"RANGE_NOT_SATISFIABLE","url":"interfaces/__global.nodejs.global.html#http.__type.range_not_satisfiable","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.NodeJS.Global.HTTP.__type"},{"id":193,"kind":32,"name":"EXPECTATION_FAILED","url":"interfaces/__global.nodejs.global.html#http.__type.expectation_failed","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.NodeJS.Global.HTTP.__type"},{"id":194,"kind":32,"name":"IM_A_TEAPOT","url":"interfaces/__global.nodejs.global.html#http.__type.im_a_teapot","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.NodeJS.Global.HTTP.__type"},{"id":195,"kind":32,"name":"MISDIRECET_REQUEST","url":"interfaces/__global.nodejs.global.html#http.__type.misdirecet_request","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.NodeJS.Global.HTTP.__type"},{"id":196,"kind":32,"name":"UNPROCESSABLE_ENTITY","url":"interfaces/__global.nodejs.global.html#http.__type.unprocessable_entity","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.NodeJS.Global.HTTP.__type"},{"id":197,"kind":32,"name":"LOCKED","url":"interfaces/__global.nodejs.global.html#http.__type.locked","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.NodeJS.Global.HTTP.__type"},{"id":198,"kind":32,"name":"FAILED_DEPENDENCY","url":"interfaces/__global.nodejs.global.html#http.__type.failed_dependency","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.NodeJS.Global.HTTP.__type"},{"id":199,"kind":32,"name":"UPGRADE_REQUIRED","url":"interfaces/__global.nodejs.global.html#http.__type.upgrade_required","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.NodeJS.Global.HTTP.__type"},{"id":200,"kind":32,"name":"PRECONDITION_REQUIRED","url":"interfaces/__global.nodejs.global.html#http.__type.precondition_required","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.NodeJS.Global.HTTP.__type"},{"id":201,"kind":32,"name":"TOO_MANY_REQUESTS","url":"interfaces/__global.nodejs.global.html#http.__type.too_many_requests","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.NodeJS.Global.HTTP.__type"},{"id":202,"kind":32,"name":"REQUEST_HEADER_FIELDS_TOO_LARGE","url":"interfaces/__global.nodejs.global.html#http.__type.request_header_fields_too_large","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.NodeJS.Global.HTTP.__type"},{"id":203,"kind":32,"name":"UNAVAILABLE_FOR_LEGAL_REASONS","url":"interfaces/__global.nodejs.global.html#http.__type.unavailable_for_legal_reasons","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.NodeJS.Global.HTTP.__type"},{"id":204,"kind":32,"name":"INTERNAL_SERVER_ERROR","url":"interfaces/__global.nodejs.global.html#http.__type.internal_server_error","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.NodeJS.Global.HTTP.__type"},{"id":205,"kind":32,"name":"NOT_IMPLEMENTED","url":"interfaces/__global.nodejs.global.html#http.__type.not_implemented","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.NodeJS.Global.HTTP.__type"},{"id":206,"kind":32,"name":"BAD_GATEWAY","url":"interfaces/__global.nodejs.global.html#http.__type.bad_gateway","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.NodeJS.Global.HTTP.__type"},{"id":207,"kind":32,"name":"SERVICE_UNAVAILABLE","url":"interfaces/__global.nodejs.global.html#http.__type.service_unavailable","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.NodeJS.Global.HTTP.__type"},{"id":208,"kind":32,"name":"GATEWAY_TIMEOUT","url":"interfaces/__global.nodejs.global.html#http.__type.gateway_timeout","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.NodeJS.Global.HTTP.__type"},{"id":209,"kind":32,"name":"HTTP_VERSION_NOT_SUPPORTED","url":"interfaces/__global.nodejs.global.html#http.__type.http_version_not_supported","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.NodeJS.Global.HTTP.__type"},{"id":210,"kind":32,"name":"VARIANT_ALSO_NEGOTIATES","url":"interfaces/__global.nodejs.global.html#http.__type.variant_also_negotiates","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.NodeJS.Global.HTTP.__type"},{"id":211,"kind":32,"name":"INSUFFICIENT_STORAGE","url":"interfaces/__global.nodejs.global.html#http.__type.insufficient_storage","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.NodeJS.Global.HTTP.__type"},{"id":212,"kind":32,"name":"LOOP_DETECTED","url":"interfaces/__global.nodejs.global.html#http.__type.loop_detected","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.NodeJS.Global.HTTP.__type"},{"id":213,"kind":32,"name":"NOT_EXTENDED","url":"interfaces/__global.nodejs.global.html#http.__type.not_extended","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.NodeJS.Global.HTTP.__type"},{"id":214,"kind":32,"name":"NETWORK_AUTHENTICATION_REQUIRED","url":"interfaces/__global.nodejs.global.html#http.__type.network_authentication_required","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.NodeJS.Global.HTTP.__type"},{"id":215,"kind":32,"name":"HttpException","url":"modules/__global.html#httpexception","classes":"tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported","parent":"__global"},{"id":216,"kind":32,"name":"HTTP","url":"modules/__global.html#http","classes":"tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported","parent":"__global"},{"id":217,"kind":65536,"name":"__type","url":"modules/__global.html#http.__type","classes":"tsd-kind-type-literal tsd-parent-kind-variable tsd-is-not-exported","parent":"__global.HTTP"},{"id":218,"kind":32,"name":"CONTINUE","url":"modules/__global.html#http.__type.continue","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.HTTP.__type"},{"id":219,"kind":32,"name":"SWITCHING_PROTOCOL","url":"modules/__global.html#http.__type.switching_protocol","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.HTTP.__type"},{"id":220,"kind":32,"name":"PROCESSING","url":"modules/__global.html#http.__type.processing","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.HTTP.__type"},{"id":221,"kind":32,"name":"EARLY_HINTS","url":"modules/__global.html#http.__type.early_hints","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.HTTP.__type"},{"id":222,"kind":32,"name":"OK","url":"modules/__global.html#http.__type.ok","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.HTTP.__type"},{"id":223,"kind":32,"name":"CREATED","url":"modules/__global.html#http.__type.created","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.HTTP.__type"},{"id":224,"kind":32,"name":"ACCEPTED","url":"modules/__global.html#http.__type.accepted","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.HTTP.__type"},{"id":225,"kind":32,"name":"NON_AUTHORITATIVE_INFORMATION","url":"modules/__global.html#http.__type.non_authoritative_information","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.HTTP.__type"},{"id":226,"kind":32,"name":"NO_CONTENT","url":"modules/__global.html#http.__type.no_content","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.HTTP.__type"},{"id":227,"kind":32,"name":"RESET_CONTENT","url":"modules/__global.html#http.__type.reset_content","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.HTTP.__type"},{"id":228,"kind":32,"name":"PARTIAL_CONTENT","url":"modules/__global.html#http.__type.partial_content","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.HTTP.__type"},{"id":229,"kind":32,"name":"MULTI_STATUS","url":"modules/__global.html#http.__type.multi_status","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.HTTP.__type"},{"id":230,"kind":32,"name":"ALREADY_REPORTED","url":"modules/__global.html#http.__type.already_reported","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.HTTP.__type"},{"id":231,"kind":32,"name":"IM_USED","url":"modules/__global.html#http.__type.im_used","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.HTTP.__type"},{"id":232,"kind":32,"name":"MULTIPLE_CHOICES","url":"modules/__global.html#http.__type.multiple_choices","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.HTTP.__type"},{"id":233,"kind":32,"name":"MOVED_PERMANENTLY","url":"modules/__global.html#http.__type.moved_permanently","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.HTTP.__type"},{"id":234,"kind":32,"name":"FOUND","url":"modules/__global.html#http.__type.found","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.HTTP.__type"},{"id":235,"kind":32,"name":"SEE_OTHER","url":"modules/__global.html#http.__type.see_other","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.HTTP.__type"},{"id":236,"kind":32,"name":"NOT_MODIFIED","url":"modules/__global.html#http.__type.not_modified","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.HTTP.__type"},{"id":237,"kind":32,"name":"USE_PROXY","url":"modules/__global.html#http.__type.use_proxy","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.HTTP.__type"},{"id":238,"kind":32,"name":"SWITCH_PROXY","url":"modules/__global.html#http.__type.switch_proxy","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.HTTP.__type"},{"id":239,"kind":32,"name":"TEMPORARY_REDIRECT","url":"modules/__global.html#http.__type.temporary_redirect","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.HTTP.__type"},{"id":240,"kind":32,"name":"PERMANENT_REDIRECT","url":"modules/__global.html#http.__type.permanent_redirect","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.HTTP.__type"},{"id":241,"kind":32,"name":"BAD_REQUEST","url":"modules/__global.html#http.__type.bad_request","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.HTTP.__type"},{"id":242,"kind":32,"name":"UNAUTHORIZED","url":"modules/__global.html#http.__type.unauthorized","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.HTTP.__type"},{"id":243,"kind":32,"name":"PAYMENT_REQUIRED","url":"modules/__global.html#http.__type.payment_required","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.HTTP.__type"},{"id":244,"kind":32,"name":"FORBIDEN","url":"modules/__global.html#http.__type.forbiden","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.HTTP.__type"},{"id":245,"kind":32,"name":"NOT_FOUND","url":"modules/__global.html#http.__type.not_found","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.HTTP.__type"},{"id":246,"kind":32,"name":"METHOD_NOT_ALLOWED","url":"modules/__global.html#http.__type.method_not_allowed","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.HTTP.__type"},{"id":247,"kind":32,"name":"NOT_ACCEPTABLE","url":"modules/__global.html#http.__type.not_acceptable","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.HTTP.__type"},{"id":248,"kind":32,"name":"PROXY_AUTHENTICATION_REQUIRED","url":"modules/__global.html#http.__type.proxy_authentication_required","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.HTTP.__type"},{"id":249,"kind":32,"name":"REQUEST_TIMEOUT","url":"modules/__global.html#http.__type.request_timeout","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.HTTP.__type"},{"id":250,"kind":32,"name":"CONFLICT","url":"modules/__global.html#http.__type.conflict","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.HTTP.__type"},{"id":251,"kind":32,"name":"GONE","url":"modules/__global.html#http.__type.gone","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.HTTP.__type"},{"id":252,"kind":32,"name":"LENGTH_REQUIRED","url":"modules/__global.html#http.__type.length_required","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.HTTP.__type"},{"id":253,"kind":32,"name":"PRECONDITION_FAILED","url":"modules/__global.html#http.__type.precondition_failed","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.HTTP.__type"},{"id":254,"kind":32,"name":"PAYLOAD_TOO_LARGE","url":"modules/__global.html#http.__type.payload_too_large","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.HTTP.__type"},{"id":255,"kind":32,"name":"URI_TOO_LONG","url":"modules/__global.html#http.__type.uri_too_long","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.HTTP.__type"},{"id":256,"kind":32,"name":"UNSUPPORTED_MEDIA_TYPE","url":"modules/__global.html#http.__type.unsupported_media_type","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.HTTP.__type"},{"id":257,"kind":32,"name":"RANGE_NOT_SATISFIABLE","url":"modules/__global.html#http.__type.range_not_satisfiable","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.HTTP.__type"},{"id":258,"kind":32,"name":"EXPECTATION_FAILED","url":"modules/__global.html#http.__type.expectation_failed","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.HTTP.__type"},{"id":259,"kind":32,"name":"IM_A_TEAPOT","url":"modules/__global.html#http.__type.im_a_teapot","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.HTTP.__type"},{"id":260,"kind":32,"name":"MISDIRECET_REQUEST","url":"modules/__global.html#http.__type.misdirecet_request","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.HTTP.__type"},{"id":261,"kind":32,"name":"UNPROCESSABLE_ENTITY","url":"modules/__global.html#http.__type.unprocessable_entity","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.HTTP.__type"},{"id":262,"kind":32,"name":"LOCKED","url":"modules/__global.html#http.__type.locked","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.HTTP.__type"},{"id":263,"kind":32,"name":"FAILED_DEPENDENCY","url":"modules/__global.html#http.__type.failed_dependency","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.HTTP.__type"},{"id":264,"kind":32,"name":"UPGRADE_REQUIRED","url":"modules/__global.html#http.__type.upgrade_required","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.HTTP.__type"},{"id":265,"kind":32,"name":"PRECONDITION_REQUIRED","url":"modules/__global.html#http.__type.precondition_required","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.HTTP.__type"},{"id":266,"kind":32,"name":"TOO_MANY_REQUESTS","url":"modules/__global.html#http.__type.too_many_requests","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.HTTP.__type"},{"id":267,"kind":32,"name":"REQUEST_HEADER_FIELDS_TOO_LARGE","url":"modules/__global.html#http.__type.request_header_fields_too_large","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.HTTP.__type"},{"id":268,"kind":32,"name":"UNAVAILABLE_FOR_LEGAL_REASONS","url":"modules/__global.html#http.__type.unavailable_for_legal_reasons","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.HTTP.__type"},{"id":269,"kind":32,"name":"INTERNAL_SERVER_ERROR","url":"modules/__global.html#http.__type.internal_server_error","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.HTTP.__type"},{"id":270,"kind":32,"name":"NOT_IMPLEMENTED","url":"modules/__global.html#http.__type.not_implemented","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.HTTP.__type"},{"id":271,"kind":32,"name":"BAD_GATEWAY","url":"modules/__global.html#http.__type.bad_gateway","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.HTTP.__type"},{"id":272,"kind":32,"name":"SERVICE_UNAVAILABLE","url":"modules/__global.html#http.__type.service_unavailable","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.HTTP.__type"},{"id":273,"kind":32,"name":"GATEWAY_TIMEOUT","url":"modules/__global.html#http.__type.gateway_timeout","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.HTTP.__type"},{"id":274,"kind":32,"name":"HTTP_VERSION_NOT_SUPPORTED","url":"modules/__global.html#http.__type.http_version_not_supported","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.HTTP.__type"},{"id":275,"kind":32,"name":"VARIANT_ALSO_NEGOTIATES","url":"modules/__global.html#http.__type.variant_also_negotiates","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.HTTP.__type"},{"id":276,"kind":32,"name":"INSUFFICIENT_STORAGE","url":"modules/__global.html#http.__type.insufficient_storage","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.HTTP.__type"},{"id":277,"kind":32,"name":"LOOP_DETECTED","url":"modules/__global.html#http.__type.loop_detected","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.HTTP.__type"},{"id":278,"kind":32,"name":"NOT_EXTENDED","url":"modules/__global.html#http.__type.not_extended","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.HTTP.__type"},{"id":279,"kind":32,"name":"NETWORK_AUTHENTICATION_REQUIRED","url":"modules/__global.html#http.__type.network_authentication_required","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.HTTP.__type"},{"id":280,"kind":64,"name":"init","url":"globals.html#init","classes":"tsd-kind-function"},{"id":281,"kind":64,"name":"query","url":"globals.html#query","classes":"tsd-kind-function"},{"id":282,"kind":128,"name":"Route","url":"classes/route.html","classes":"tsd-kind-class"},{"id":283,"kind":1024,"name":"get","url":"classes/route.html#get","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"Route"},{"id":284,"kind":1024,"name":"post","url":"classes/route.html#post","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"Route"},{"id":285,"kind":1024,"name":"put","url":"classes/route.html#put","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"Route"},{"id":286,"kind":1024,"name":"head","url":"classes/route.html#head","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"Route"},{"id":287,"kind":1024,"name":"delete","url":"classes/route.html#delete","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"Route"},{"id":288,"kind":1024,"name":"options","url":"classes/route.html#options","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"Route"},{"id":289,"kind":1024,"name":"trace","url":"classes/route.html#trace","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"Route"},{"id":290,"kind":1024,"name":"copy","url":"classes/route.html#copy","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"Route"},{"id":291,"kind":1024,"name":"lock","url":"classes/route.html#lock","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"Route"},{"id":292,"kind":1024,"name":"mkcol","url":"classes/route.html#mkcol","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"Route"},{"id":293,"kind":1024,"name":"move","url":"classes/route.html#move","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"Route"},{"id":294,"kind":1024,"name":"purge","url":"classes/route.html#purge","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"Route"},{"id":295,"kind":1024,"name":"propfind","url":"classes/route.html#propfind","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"Route"},{"id":296,"kind":1024,"name":"proppatch","url":"classes/route.html#proppatch","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"Route"},{"id":297,"kind":1024,"name":"unlock","url":"classes/route.html#unlock","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"Route"},{"id":298,"kind":1024,"name":"report","url":"classes/route.html#report","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"Route"},{"id":299,"kind":1024,"name":"mkactivity","url":"classes/route.html#mkactivity","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"Route"},{"id":300,"kind":1024,"name":"checkout","url":"classes/route.html#checkout","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"Route"},{"id":301,"kind":1024,"name":"merge","url":"classes/route.html#merge","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"Route"},{"id":302,"kind":1024,"name":"m-search","url":"classes/route.html#m_search","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"Route"},{"id":303,"kind":1024,"name":"notify","url":"classes/route.html#notify","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"Route"},{"id":304,"kind":1024,"name":"subscribe","url":"classes/route.html#subscribe","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"Route"},{"id":305,"kind":1024,"name":"unsubscribe","url":"classes/route.html#unsubscribe","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"Route"},{"id":306,"kind":1024,"name":"patch","url":"classes/route.html#patch","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"Route"},{"id":307,"kind":1024,"name":"search","url":"classes/route.html#search","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"Route"},{"id":308,"kind":1024,"name":"connect","url":"classes/route.html#connect","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"Route"},{"id":309,"kind":1024,"name":"_routes","url":"classes/route.html#_routes","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-protected","parent":"Route"},{"id":310,"kind":1024,"name":"_prefix","url":"classes/route.html#_prefix","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-protected","parent":"Route"},{"id":311,"kind":262144,"name":"routes","url":"classes/route.html#routes-1","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"Route"},{"id":312,"kind":512,"name":"constructor","url":"classes/route.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"Route"},{"id":313,"kind":2048,"name":"_push","url":"classes/route.html#_push","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-protected","parent":"Route"},{"id":314,"kind":2048,"name":"any","url":"classes/route.html#any","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Route"},{"id":315,"kind":2048,"name":"oneOf","url":"classes/route.html#oneof","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Route"},{"id":316,"kind":2048,"name":"use","url":"classes/route.html#use","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Route"},{"id":317,"kind":256,"name":"MethodFunctions","url":"interfaces/route.methodfunctions.html","classes":"tsd-kind-interface tsd-parent-kind-class tsd-has-type-parameter","parent":"Route"},{"id":318,"kind":1024,"name":"get","url":"interfaces/route.methodfunctions.html#get","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Route.MethodFunctions"},{"id":319,"kind":1024,"name":"post","url":"interfaces/route.methodfunctions.html#post","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Route.MethodFunctions"},{"id":320,"kind":1024,"name":"put","url":"interfaces/route.methodfunctions.html#put","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Route.MethodFunctions"},{"id":321,"kind":1024,"name":"head","url":"interfaces/route.methodfunctions.html#head","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Route.MethodFunctions"},{"id":322,"kind":1024,"name":"delete","url":"interfaces/route.methodfunctions.html#delete","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Route.MethodFunctions"},{"id":323,"kind":1024,"name":"options","url":"interfaces/route.methodfunctions.html#options","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Route.MethodFunctions"},{"id":324,"kind":1024,"name":"trace","url":"interfaces/route.methodfunctions.html#trace","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Route.MethodFunctions"},{"id":325,"kind":1024,"name":"copy","url":"interfaces/route.methodfunctions.html#copy","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Route.MethodFunctions"},{"id":326,"kind":1024,"name":"lock","url":"interfaces/route.methodfunctions.html#lock","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Route.MethodFunctions"},{"id":327,"kind":1024,"name":"mkcol","url":"interfaces/route.methodfunctions.html#mkcol","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Route.MethodFunctions"},{"id":328,"kind":1024,"name":"move","url":"interfaces/route.methodfunctions.html#move","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Route.MethodFunctions"},{"id":329,"kind":1024,"name":"purge","url":"interfaces/route.methodfunctions.html#purge","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Route.MethodFunctions"},{"id":330,"kind":1024,"name":"propfind","url":"interfaces/route.methodfunctions.html#propfind","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Route.MethodFunctions"},{"id":331,"kind":1024,"name":"proppatch","url":"interfaces/route.methodfunctions.html#proppatch","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Route.MethodFunctions"},{"id":332,"kind":1024,"name":"unlock","url":"interfaces/route.methodfunctions.html#unlock","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Route.MethodFunctions"},{"id":333,"kind":1024,"name":"report","url":"interfaces/route.methodfunctions.html#report","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Route.MethodFunctions"},{"id":334,"kind":1024,"name":"mkactivity","url":"interfaces/route.methodfunctions.html#mkactivity","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Route.MethodFunctions"},{"id":335,"kind":1024,"name":"checkout","url":"interfaces/route.methodfunctions.html#checkout","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Route.MethodFunctions"},{"id":336,"kind":1024,"name":"merge","url":"interfaces/route.methodfunctions.html#merge","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Route.MethodFunctions"},{"id":337,"kind":1024,"name":"m-search","url":"interfaces/route.methodfunctions.html#m_search","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Route.MethodFunctions"},{"id":338,"kind":1024,"name":"notify","url":"interfaces/route.methodfunctions.html#notify","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Route.MethodFunctions"},{"id":339,"kind":1024,"name":"subscribe","url":"interfaces/route.methodfunctions.html#subscribe","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Route.MethodFunctions"},{"id":340,"kind":1024,"name":"unsubscribe","url":"interfaces/route.methodfunctions.html#unsubscribe","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Route.MethodFunctions"},{"id":341,"kind":1024,"name":"patch","url":"interfaces/route.methodfunctions.html#patch","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Route.MethodFunctions"},{"id":342,"kind":1024,"name":"search","url":"interfaces/route.methodfunctions.html#search","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Route.MethodFunctions"},{"id":343,"kind":1024,"name":"connect","url":"interfaces/route.methodfunctions.html#connect","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Route.MethodFunctions"},{"id":344,"kind":256,"name":"Routes","url":"interfaces/route.routes.html","classes":"tsd-kind-interface tsd-parent-kind-class","parent":"Route"},{"id":345,"kind":1024,"name":"get","url":"interfaces/route.routes.html#get","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Route.Routes"},{"id":346,"kind":1024,"name":"post","url":"interfaces/route.routes.html#post","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Route.Routes"},{"id":347,"kind":1024,"name":"put","url":"interfaces/route.routes.html#put","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Route.Routes"},{"id":348,"kind":1024,"name":"head","url":"interfaces/route.routes.html#head","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Route.Routes"},{"id":349,"kind":1024,"name":"delete","url":"interfaces/route.routes.html#delete","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Route.Routes"},{"id":350,"kind":1024,"name":"options","url":"interfaces/route.routes.html#options","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Route.Routes"},{"id":351,"kind":1024,"name":"trace","url":"interfaces/route.routes.html#trace","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Route.Routes"},{"id":352,"kind":1024,"name":"copy","url":"interfaces/route.routes.html#copy","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Route.Routes"},{"id":353,"kind":1024,"name":"lock","url":"interfaces/route.routes.html#lock","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Route.Routes"},{"id":354,"kind":1024,"name":"mkcol","url":"interfaces/route.routes.html#mkcol","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Route.Routes"},{"id":355,"kind":1024,"name":"move","url":"interfaces/route.routes.html#move","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Route.Routes"},{"id":356,"kind":1024,"name":"purge","url":"interfaces/route.routes.html#purge","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Route.Routes"},{"id":357,"kind":1024,"name":"propfind","url":"interfaces/route.routes.html#propfind","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Route.Routes"},{"id":358,"kind":1024,"name":"proppatch","url":"interfaces/route.routes.html#proppatch","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Route.Routes"},{"id":359,"kind":1024,"name":"unlock","url":"interfaces/route.routes.html#unlock","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Route.Routes"},{"id":360,"kind":1024,"name":"report","url":"interfaces/route.routes.html#report","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Route.Routes"},{"id":361,"kind":1024,"name":"mkactivity","url":"interfaces/route.routes.html#mkactivity","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Route.Routes"},{"id":362,"kind":1024,"name":"checkout","url":"interfaces/route.routes.html#checkout","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Route.Routes"},{"id":363,"kind":1024,"name":"merge","url":"interfaces/route.routes.html#merge","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Route.Routes"},{"id":364,"kind":1024,"name":"m-search","url":"interfaces/route.routes.html#m_search","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Route.Routes"},{"id":365,"kind":1024,"name":"notify","url":"interfaces/route.routes.html#notify","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Route.Routes"},{"id":366,"kind":1024,"name":"subscribe","url":"interfaces/route.routes.html#subscribe","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Route.Routes"},{"id":367,"kind":1024,"name":"unsubscribe","url":"interfaces/route.routes.html#unsubscribe","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Route.Routes"},{"id":368,"kind":1024,"name":"patch","url":"interfaces/route.routes.html#patch","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Route.Routes"},{"id":369,"kind":1024,"name":"search","url":"interfaces/route.routes.html#search","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Route.Routes"},{"id":370,"kind":1024,"name":"connect","url":"interfaces/route.routes.html#connect","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Route.Routes"},{"id":371,"kind":256,"name":"RouteObject","url":"interfaces/route.routeobject.html","classes":"tsd-kind-interface tsd-parent-kind-class","parent":"Route"},{"id":372,"kind":1024,"name":"path","url":"interfaces/route.routeobject.html#path","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Route.RouteObject"},{"id":373,"kind":1024,"name":"options","url":"interfaces/route.routeobject.html#options","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Route.RouteObject"},{"id":374,"kind":1024,"name":"controller","url":"interfaces/route.routeobject.html#controller","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Route.RouteObject"},{"id":375,"kind":256,"name":"JsonSchemaProperties","url":"interfaces/route.jsonschemaproperties.html","classes":"tsd-kind-interface tsd-parent-kind-class","parent":"Route"},{"id":376,"kind":256,"name":"JsonSchema","url":"interfaces/route.jsonschema.html","classes":"tsd-kind-interface tsd-parent-kind-class","parent":"Route"},{"id":377,"kind":1024,"name":"title","url":"interfaces/route.jsonschema.html#title","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Route.JsonSchema"},{"id":378,"kind":1024,"name":"type","url":"interfaces/route.jsonschema.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Route.JsonSchema"},{"id":379,"kind":1024,"name":"properties","url":"interfaces/route.jsonschema.html#properties","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Route.JsonSchema"},{"id":380,"kind":1024,"name":"patternProperties","url":"interfaces/route.jsonschema.html#patternproperties","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Route.JsonSchema"},{"id":381,"kind":1024,"name":"additionalProperties","url":"interfaces/route.jsonschema.html#additionalproperties","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Route.JsonSchema"},{"id":382,"kind":1024,"name":"required","url":"interfaces/route.jsonschema.html#required","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Route.JsonSchema"},{"id":383,"kind":256,"name":"Schema","url":"interfaces/route.schema.html","classes":"tsd-kind-interface tsd-parent-kind-class","parent":"Route"},{"id":384,"kind":1024,"name":"response","url":"interfaces/route.schema.html#response","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Route.Schema"},{"id":385,"kind":65536,"name":"__type","url":"interfaces/route.schema.html#response.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property","parent":"Route.Schema.response"},{"id":386,"kind":256,"name":"RouteOptions","url":"interfaces/route.routeoptions.html","classes":"tsd-kind-interface tsd-parent-kind-class","parent":"Route"},{"id":387,"kind":1024,"name":"schema","url":"interfaces/route.routeoptions.html#schema","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Route.RouteOptions"},{"id":388,"kind":4194304,"name":"Controller","url":"classes/route.html#controller","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"Route"},{"id":389,"kind":65536,"name":"__type","url":"classes/route.html#controller.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"Route.Controller"},{"id":390,"kind":4194304,"name":"MethodFunction","url":"classes/route.html#methodfunction","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-has-type-parameter tsd-is-static","parent":"Route"},{"id":391,"kind":65536,"name":"__type","url":"classes/route.html#methodfunction.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"Route.MethodFunction"},{"id":392,"kind":4194304,"name":"JsonSchemaType","url":"classes/route.html#jsonschematype","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"Route"},{"id":393,"kind":128,"name":"Router","url":"classes/router.html","classes":"tsd-kind-class"},{"id":394,"kind":1024,"name":"_routes","url":"classes/router.html#_routes","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-protected","parent":"Router"},{"id":395,"kind":512,"name":"constructor","url":"classes/router.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"Router"},{"id":396,"kind":2048,"name":"_next","url":"classes/router.html#_next","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-protected","parent":"Router"},{"id":397,"kind":1024,"name":"_safeNext","url":"classes/router.html#_safenext","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-protected","parent":"Router"},{"id":398,"kind":2048,"name":"initialize","url":"classes/router.html#initialize","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Router"},{"id":399,"kind":2048,"name":"prepend","url":"classes/router.html#prepend","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Router"},{"id":400,"kind":2048,"name":"push","url":"classes/router.html#push","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Router"},{"id":401,"kind":2048,"name":"route","url":"classes/router.html#route","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Router"},{"id":402,"kind":128,"name":"Foxify","url":"classes/foxify.html","classes":"tsd-kind-class"},{"id":403,"kind":2048,"name":"get","url":"classes/foxify.html#get","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"Foxify"},{"id":404,"kind":2048,"name":"use","url":"classes/foxify.html#use","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Foxify"},{"id":405,"kind":1024,"name":"post","url":"classes/foxify.html#post","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"Foxify"},{"id":406,"kind":1024,"name":"put","url":"classes/foxify.html#put","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"Foxify"},{"id":407,"kind":1024,"name":"head","url":"classes/foxify.html#head","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"Foxify"},{"id":408,"kind":1024,"name":"delete","url":"classes/foxify.html#delete","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"Foxify"},{"id":409,"kind":1024,"name":"options","url":"classes/foxify.html#options-1","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"Foxify"},{"id":410,"kind":1024,"name":"trace","url":"classes/foxify.html#trace","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"Foxify"},{"id":411,"kind":1024,"name":"copy","url":"classes/foxify.html#copy","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"Foxify"},{"id":412,"kind":1024,"name":"lock","url":"classes/foxify.html#lock","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"Foxify"},{"id":413,"kind":1024,"name":"mkcol","url":"classes/foxify.html#mkcol","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"Foxify"},{"id":414,"kind":1024,"name":"move","url":"classes/foxify.html#move","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"Foxify"},{"id":415,"kind":1024,"name":"purge","url":"classes/foxify.html#purge","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"Foxify"},{"id":416,"kind":1024,"name":"propfind","url":"classes/foxify.html#propfind","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"Foxify"},{"id":417,"kind":1024,"name":"proppatch","url":"classes/foxify.html#proppatch","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"Foxify"},{"id":418,"kind":1024,"name":"unlock","url":"classes/foxify.html#unlock","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"Foxify"},{"id":419,"kind":1024,"name":"report","url":"classes/foxify.html#report","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"Foxify"},{"id":420,"kind":1024,"name":"mkactivity","url":"classes/foxify.html#mkactivity","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"Foxify"},{"id":421,"kind":1024,"name":"checkout","url":"classes/foxify.html#checkout","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"Foxify"},{"id":422,"kind":1024,"name":"merge","url":"classes/foxify.html#merge","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"Foxify"},{"id":423,"kind":1024,"name":"m-search","url":"classes/foxify.html#m_search","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"Foxify"},{"id":424,"kind":1024,"name":"notify","url":"classes/foxify.html#notify","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"Foxify"},{"id":425,"kind":1024,"name":"subscribe","url":"classes/foxify.html#subscribe","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"Foxify"},{"id":426,"kind":1024,"name":"unsubscribe","url":"classes/foxify.html#unsubscribe","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"Foxify"},{"id":427,"kind":1024,"name":"patch","url":"classes/foxify.html#patch","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"Foxify"},{"id":428,"kind":1024,"name":"search","url":"classes/foxify.html#search","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"Foxify"},{"id":429,"kind":1024,"name":"connect","url":"classes/foxify.html#connect","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"Foxify"},{"id":430,"kind":1024,"name":"constants","url":"classes/foxify.html#constants","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"Foxify"},{"id":431,"kind":1024,"name":"Route","url":"classes/foxify.html#route","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"Foxify"},{"id":432,"kind":1024,"name":"static","url":"classes/foxify.html#static","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"Foxify"},{"id":433,"kind":2048,"name":"dotenv","url":"classes/foxify.html#dotenv","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"Foxify"},{"id":434,"kind":2097152,"name":"_options","url":"classes/foxify.html#_options","classes":"tsd-kind-object-literal tsd-parent-kind-class tsd-is-private","parent":"Foxify"},{"id":435,"kind":32,"name":"https","url":"classes/foxify.html#_options.https","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"Foxify._options"},{"id":436,"kind":32,"name":"x-powered-by","url":"classes/foxify.html#_options.x_powered_by","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"Foxify._options"},{"id":437,"kind":32,"name":"content-length","url":"classes/foxify.html#_options.content_length","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"Foxify._options"},{"id":438,"kind":2097152,"name":"routing","url":"classes/foxify.html#_options.routing","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"Foxify._options"},{"id":439,"kind":32,"name":"strict","url":"classes/foxify.html#_options.routing.strict","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"Foxify._options.routing"},{"id":440,"kind":32,"name":"sensitive","url":"classes/foxify.html#_options.routing.sensitive","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"Foxify._options.routing"},{"id":441,"kind":2097152,"name":"json","url":"classes/foxify.html#_options.json","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"Foxify._options"},{"id":442,"kind":32,"name":"escape","url":"classes/foxify.html#_options.json.escape","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"Foxify._options.json"},{"id":443,"kind":2097152,"name":"_settings","url":"classes/foxify.html#_settings","classes":"tsd-kind-object-literal tsd-parent-kind-class tsd-is-private","parent":"Foxify"},{"id":444,"kind":32,"name":"env","url":"classes/foxify.html#_settings.env","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"Foxify._settings"},{"id":445,"kind":32,"name":"url","url":"classes/foxify.html#_settings.url","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"Foxify._settings"},{"id":446,"kind":32,"name":"port","url":"classes/foxify.html#_settings.port","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"Foxify._settings"},{"id":447,"kind":32,"name":"workers","url":"classes/foxify.html#_settings.workers","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"Foxify._settings"},{"id":448,"kind":2097152,"name":"https","url":"classes/foxify.html#_settings.https-1","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"Foxify._settings"},{"id":449,"kind":32,"name":"cert","url":"classes/foxify.html#_settings.https-1.cert","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"Foxify._settings.https"},{"id":450,"kind":32,"name":"key","url":"classes/foxify.html#_settings.https-1.key","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"Foxify._settings.https"},{"id":451,"kind":2097152,"name":"json","url":"classes/foxify.html#_settings.json-1","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"Foxify._settings"},{"id":452,"kind":32,"name":"replacer","url":"classes/foxify.html#_settings.json-1.replacer","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"Foxify._settings.json"},{"id":453,"kind":32,"name":"spaces","url":"classes/foxify.html#_settings.json-1.spaces","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"Foxify._settings.json"},{"id":454,"kind":2097152,"name":"query","url":"classes/foxify.html#_settings.query","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"Foxify._settings"},{"id":455,"kind":32,"name":"parser","url":"classes/foxify.html#_settings.query.parser","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"Foxify._settings.query"},{"id":456,"kind":1024,"name":"_router","url":"classes/foxify.html#_router","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Foxify"},{"id":457,"kind":1024,"name":"_view","url":"classes/foxify.html#_view","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Foxify"},{"id":458,"kind":512,"name":"constructor","url":"classes/foxify.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"Foxify"},{"id":459,"kind":2048,"name":"_set","url":"classes/foxify.html#_set","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"Foxify"},{"id":460,"kind":2048,"name":"_use","url":"classes/foxify.html#_use","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"Foxify"},{"id":461,"kind":2048,"name":"enable","url":"classes/foxify.html#enable","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Foxify"},{"id":462,"kind":2048,"name":"disable","url":"classes/foxify.html#disable","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Foxify"},{"id":463,"kind":2048,"name":"enabled","url":"classes/foxify.html#enabled","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Foxify"},{"id":464,"kind":2048,"name":"disabled","url":"classes/foxify.html#disabled","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Foxify"},{"id":465,"kind":2048,"name":"set","url":"classes/foxify.html#set","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Foxify"},{"id":466,"kind":2048,"name":"engine","url":"classes/foxify.html#engine","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Foxify"},{"id":467,"kind":2048,"name":"start","url":"classes/foxify.html#start","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Foxify"},{"id":468,"kind":256,"name":"Options","url":"interfaces/foxify.options.html","classes":"tsd-kind-interface tsd-parent-kind-class","parent":"Foxify"},{"id":469,"kind":1024,"name":"https","url":"interfaces/foxify.options.html#https","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Foxify.Options"},{"id":470,"kind":1024,"name":"x-powered-by","url":"interfaces/foxify.options.html#x_powered_by","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Foxify.Options"},{"id":471,"kind":1024,"name":"content-length","url":"interfaces/foxify.options.html#content_length","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Foxify.Options"},{"id":472,"kind":1024,"name":"routing","url":"interfaces/foxify.options.html#routing","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Foxify.Options"},{"id":473,"kind":65536,"name":"__type","url":"interfaces/foxify.options.html#routing.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-property","parent":"Foxify.Options.routing"},{"id":474,"kind":32,"name":"strict","url":"interfaces/foxify.options.html#routing.__type-1.strict","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"Foxify.Options.routing.__type"},{"id":475,"kind":32,"name":"sensitive","url":"interfaces/foxify.options.html#routing.__type-1.sensitive","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"Foxify.Options.routing.__type"},{"id":476,"kind":1024,"name":"json","url":"interfaces/foxify.options.html#json","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Foxify.Options"},{"id":477,"kind":65536,"name":"__type","url":"interfaces/foxify.options.html#json.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property","parent":"Foxify.Options.json"},{"id":478,"kind":32,"name":"escape","url":"interfaces/foxify.options.html#json.__type.escape","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"Foxify.Options.json.__type"},{"id":479,"kind":256,"name":"Settings","url":"interfaces/foxify.settings.html","classes":"tsd-kind-interface tsd-parent-kind-class","parent":"Foxify"},{"id":480,"kind":1024,"name":"env","url":"interfaces/foxify.settings.html#env","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Foxify.Settings"},{"id":481,"kind":1024,"name":"url","url":"interfaces/foxify.settings.html#url","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Foxify.Settings"},{"id":482,"kind":1024,"name":"port","url":"interfaces/foxify.settings.html#port","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Foxify.Settings"},{"id":483,"kind":1024,"name":"workers","url":"interfaces/foxify.settings.html#workers","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Foxify.Settings"},{"id":484,"kind":1024,"name":"https","url":"interfaces/foxify.settings.html#https","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Foxify.Settings"},{"id":485,"kind":65536,"name":"__type","url":"interfaces/foxify.settings.html#https.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property","parent":"Foxify.Settings.https"},{"id":486,"kind":32,"name":"cert","url":"interfaces/foxify.settings.html#https.__type.cert","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"Foxify.Settings.https.__type"},{"id":487,"kind":32,"name":"key","url":"interfaces/foxify.settings.html#https.__type.key","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"Foxify.Settings.https.__type"},{"id":488,"kind":1024,"name":"json","url":"interfaces/foxify.settings.html#json","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Foxify.Settings"},{"id":489,"kind":65536,"name":"__type","url":"interfaces/foxify.settings.html#json.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-property","parent":"Foxify.Settings.json"},{"id":490,"kind":32,"name":"replacer","url":"interfaces/foxify.settings.html#json.__type-1.replacer","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"Foxify.Settings.json.__type"},{"id":491,"kind":32,"name":"spaces","url":"interfaces/foxify.settings.html#json.__type-1.spaces","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"Foxify.Settings.json.__type"},{"id":492,"kind":1024,"name":"query","url":"interfaces/foxify.settings.html#query","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Foxify.Settings"},{"id":493,"kind":65536,"name":"__type","url":"interfaces/foxify.settings.html#query.__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-property","parent":"Foxify.Settings.query"},{"id":494,"kind":32,"name":"parser","url":"interfaces/foxify.settings.html#query.__type-2.parser","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"Foxify.Settings.query.__type"},{"id":495,"kind":128,"name":"Server","url":"classes/server.html","classes":"tsd-kind-class"},{"id":496,"kind":1024,"name":"_instance","url":"classes/server.html#_instance","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Server"},{"id":497,"kind":1024,"name":"_host","url":"classes/server.html#_host","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-protected","parent":"Server"},{"id":498,"kind":1024,"name":"_port","url":"classes/server.html#_port","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-protected","parent":"Server"},{"id":499,"kind":1024,"name":"_listening","url":"classes/server.html#_listening","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-protected","parent":"Server"},{"id":500,"kind":512,"name":"constructor","url":"classes/server.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"Server"},{"id":501,"kind":262144,"name":"listening","url":"classes/server.html#listening","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"Server"},{"id":502,"kind":2048,"name":"start","url":"classes/server.html#start","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Server"},{"id":503,"kind":2048,"name":"stop","url":"classes/server.html#stop","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Server"},{"id":504,"kind":2048,"name":"reload","url":"classes/server.html#reload","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Server"},{"id":505,"kind":256,"name":"Options","url":"interfaces/server.options.html","classes":"tsd-kind-interface tsd-parent-kind-class","parent":"Server"},{"id":506,"kind":1024,"name":"https","url":"interfaces/server.options.html#https","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"Server.Options"},{"id":507,"kind":1024,"name":"x-powered-by","url":"interfaces/server.options.html#x_powered_by","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"Server.Options"},{"id":508,"kind":1024,"name":"content-length","url":"interfaces/server.options.html#content_length","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"Server.Options"},{"id":509,"kind":1024,"name":"routing","url":"interfaces/server.options.html#routing","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"Server.Options"},{"id":510,"kind":65536,"name":"__type","url":"interfaces/server.options.html#routing.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-property","parent":"Server.Options.routing"},{"id":511,"kind":32,"name":"strict","url":"interfaces/server.options.html#routing.__type-1.strict","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"Server.Options.routing.__type"},{"id":512,"kind":32,"name":"sensitive","url":"interfaces/server.options.html#routing.__type-1.sensitive","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"Server.Options.routing.__type"},{"id":513,"kind":1024,"name":"json","url":"interfaces/server.options.html#json","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"Server.Options"},{"id":514,"kind":65536,"name":"__type","url":"interfaces/server.options.html#json.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property","parent":"Server.Options.json"},{"id":515,"kind":32,"name":"escape","url":"interfaces/server.options.html#json.__type.escape","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"Server.Options.json.__type"},{"id":516,"kind":256,"name":"Settings","url":"interfaces/server.settings.html","classes":"tsd-kind-interface tsd-parent-kind-class","parent":"Server"},{"id":517,"kind":1024,"name":"view","url":"interfaces/server.settings.html#view","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Server.Settings"},{"id":518,"kind":1024,"name":"env","url":"interfaces/server.settings.html#env","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"Server.Settings"},{"id":519,"kind":1024,"name":"url","url":"interfaces/server.settings.html#url","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"Server.Settings"},{"id":520,"kind":1024,"name":"port","url":"interfaces/server.settings.html#port","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"Server.Settings"},{"id":521,"kind":1024,"name":"workers","url":"interfaces/server.settings.html#workers","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"Server.Settings"},{"id":522,"kind":1024,"name":"https","url":"interfaces/server.settings.html#https","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"Server.Settings"},{"id":523,"kind":65536,"name":"__type","url":"interfaces/server.settings.html#https.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property","parent":"Server.Settings.https"},{"id":524,"kind":32,"name":"cert","url":"interfaces/server.settings.html#https.__type.cert","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"Server.Settings.https.__type"},{"id":525,"kind":32,"name":"key","url":"interfaces/server.settings.html#https.__type.key","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"Server.Settings.https.__type"},{"id":526,"kind":1024,"name":"json","url":"interfaces/server.settings.html#json","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"Server.Settings"},{"id":527,"kind":65536,"name":"__type","url":"interfaces/server.settings.html#json.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-property","parent":"Server.Settings.json"},{"id":528,"kind":32,"name":"replacer","url":"interfaces/server.settings.html#json.__type-1.replacer","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"Server.Settings.json.__type"},{"id":529,"kind":32,"name":"spaces","url":"interfaces/server.settings.html#json.__type-1.spaces","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"Server.Settings.json.__type"},{"id":530,"kind":1024,"name":"query","url":"interfaces/server.settings.html#query","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"Server.Settings"},{"id":531,"kind":65536,"name":"__type","url":"interfaces/server.settings.html#query.__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-property","parent":"Server.Settings.query"},{"id":532,"kind":32,"name":"parser","url":"interfaces/server.settings.html#query.__type-2.parser","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"Server.Settings.query.__type"},{"id":533,"kind":4194304,"name":"Listener","url":"classes/server.html#listener","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"Server"},{"id":534,"kind":65536,"name":"__type","url":"classes/server.html#listener.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"Server.Listener"},{"id":535,"kind":4194304,"name":"Callback","url":"classes/server.html#callback","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"Server"},{"id":536,"kind":65536,"name":"__type","url":"classes/server.html#callback.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"Server.Callback"}]}; \ No newline at end of file + typedoc.search.data = {"kinds":{"2":"Module","32":"Variable","64":"Function","128":"Class","256":"Interface","512":"Constructor","1024":"Property","2048":"Method","65536":"Type literal","262144":"Accessor","2097152":"Object literal","4194304":"Type alias"},"rows":[{"id":0,"kind":64,"name":"mixins","url":"globals.html#mixins","classes":"tsd-kind-function"},{"id":1,"kind":64,"name":"define","url":"globals.html#define","classes":"tsd-kind-function"},{"id":2,"kind":128,"name":"Engine","url":"classes/engine.html","classes":"tsd-kind-class"},{"id":3,"kind":1024,"name":"_path","url":"classes/engine.html#_path","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-protected","parent":"Engine"},{"id":4,"kind":1024,"name":"_ext","url":"classes/engine.html#_ext","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-protected","parent":"Engine"},{"id":5,"kind":1024,"name":"_handler","url":"classes/engine.html#_handler","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-protected","parent":"Engine"},{"id":6,"kind":65536,"name":"__type","url":"classes/engine.html#_handler.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-property","parent":"Engine._handler"},{"id":7,"kind":512,"name":"constructor","url":"classes/engine.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"Engine"},{"id":8,"kind":2048,"name":"render","url":"classes/engine.html#render","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Engine"},{"id":9,"kind":4194304,"name":"Callback","url":"classes/engine.html#callback","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"Engine"},{"id":10,"kind":65536,"name":"__type","url":"classes/engine.html#callback.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"Engine.Callback"},{"id":11,"kind":128,"name":"Response","url":"classes/response.html","classes":"tsd-kind-class"},{"id":12,"kind":1024,"name":"type","url":"classes/response.html#type","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Response"},{"id":13,"kind":1024,"name":"set","url":"classes/response.html#set","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Response"},{"id":14,"kind":1024,"name":"get","url":"classes/response.html#get","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Response"},{"id":15,"kind":2048,"name":"append","url":"classes/response.html#append","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Response"},{"id":16,"kind":2048,"name":"attachment","url":"classes/response.html#attachment","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Response"},{"id":17,"kind":2048,"name":"clearCookie","url":"classes/response.html#clearcookie","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Response"},{"id":18,"kind":2048,"name":"contentType","url":"classes/response.html#contenttype","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Response"},{"id":19,"kind":2048,"name":"cookie","url":"classes/response.html#cookie","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Response"},{"id":20,"kind":2048,"name":"download","url":"classes/response.html#download","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Response"},{"id":21,"kind":2048,"name":"format","url":"classes/response.html#format","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Response"},{"id":22,"kind":2048,"name":"header","url":"classes/response.html#header","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Response"},{"id":23,"kind":2048,"name":"json","url":"classes/response.html#json","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Response"},{"id":24,"kind":2048,"name":"jsonp","url":"classes/response.html#jsonp","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Response"},{"id":25,"kind":2048,"name":"links","url":"classes/response.html#links","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Response"},{"id":26,"kind":2048,"name":"location","url":"classes/response.html#location","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Response"},{"id":27,"kind":2048,"name":"redirect","url":"classes/response.html#redirect","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Response"},{"id":28,"kind":2048,"name":"render","url":"classes/response.html#render","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Response"},{"id":29,"kind":2048,"name":"send","url":"classes/response.html#send","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Response"},{"id":30,"kind":2048,"name":"sendFile","url":"classes/response.html#sendfile","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Response"},{"id":31,"kind":2048,"name":"sendStatus","url":"classes/response.html#sendstatus","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Response"},{"id":32,"kind":2048,"name":"status","url":"classes/response.html#status","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Response"},{"id":33,"kind":2048,"name":"vary","url":"classes/response.html#vary","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Response"},{"id":34,"kind":1024,"name":"statusCode","url":"classes/response.html#statuscode","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"Response"},{"id":35,"kind":1024,"name":"statusMessage","url":"classes/response.html#statusmessage","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"Response"},{"id":36,"kind":512,"name":"constructor","url":"classes/response.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"Response"},{"id":37,"kind":2048,"name":"assignSocket","url":"classes/response.html#assignsocket","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Response"},{"id":38,"kind":2048,"name":"detachSocket","url":"classes/response.html#detachsocket","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Response"},{"id":39,"kind":2048,"name":"writeContinue","url":"classes/response.html#writecontinue","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Response"},{"id":40,"kind":2048,"name":"writeHead","url":"classes/response.html#writehead","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Response"},{"id":41,"kind":1024,"name":"upgrading","url":"classes/response.html#upgrading","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"Response"},{"id":42,"kind":1024,"name":"chunkedEncoding","url":"classes/response.html#chunkedencoding","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"Response"},{"id":43,"kind":1024,"name":"shouldKeepAlive","url":"classes/response.html#shouldkeepalive","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"Response"},{"id":44,"kind":1024,"name":"useChunkedEncodingByDefault","url":"classes/response.html#usechunkedencodingbydefault","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"Response"},{"id":45,"kind":1024,"name":"sendDate","url":"classes/response.html#senddate","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"Response"},{"id":46,"kind":1024,"name":"finished","url":"classes/response.html#finished","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"Response"},{"id":47,"kind":1024,"name":"headersSent","url":"classes/response.html#headerssent","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"Response"},{"id":48,"kind":1024,"name":"connection","url":"classes/response.html#connection","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"Response"},{"id":49,"kind":2048,"name":"setTimeout","url":"classes/response.html#settimeout","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Response"},{"id":50,"kind":2048,"name":"setHeader","url":"classes/response.html#setheader","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Response"},{"id":51,"kind":2048,"name":"getHeader","url":"classes/response.html#getheader","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Response"},{"id":52,"kind":2048,"name":"getHeaders","url":"classes/response.html#getheaders","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Response"},{"id":53,"kind":2048,"name":"getHeaderNames","url":"classes/response.html#getheadernames","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Response"},{"id":54,"kind":2048,"name":"hasHeader","url":"classes/response.html#hasheader","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Response"},{"id":55,"kind":2048,"name":"removeHeader","url":"classes/response.html#removeheader","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Response"},{"id":56,"kind":2048,"name":"addTrailers","url":"classes/response.html#addtrailers","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Response"},{"id":57,"kind":2048,"name":"flushHeaders","url":"classes/response.html#flushheaders","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Response"},{"id":58,"kind":1024,"name":"writable","url":"classes/response.html#writable","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"Response"},{"id":59,"kind":1024,"name":"writableHighWaterMark","url":"classes/response.html#writablehighwatermark","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"Response"},{"id":60,"kind":1024,"name":"writableLength","url":"classes/response.html#writablelength","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"Response"},{"id":61,"kind":2048,"name":"_write","url":"classes/response.html#_write","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Response"},{"id":62,"kind":2048,"name":"_writev","url":"classes/response.html#_writev","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Response"},{"id":63,"kind":2048,"name":"_destroy","url":"classes/response.html#_destroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Response"},{"id":64,"kind":2048,"name":"_final","url":"classes/response.html#_final","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Response"},{"id":65,"kind":2048,"name":"write","url":"classes/response.html#write","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Response"},{"id":66,"kind":2048,"name":"setDefaultEncoding","url":"classes/response.html#setdefaultencoding","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Response"},{"id":67,"kind":2048,"name":"end","url":"classes/response.html#end","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Response"},{"id":68,"kind":2048,"name":"cork","url":"classes/response.html#cork","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Response"},{"id":69,"kind":2048,"name":"uncork","url":"classes/response.html#uncork","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Response"},{"id":70,"kind":2048,"name":"destroy","url":"classes/response.html#destroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Response"},{"id":71,"kind":2048,"name":"addListener","url":"classes/response.html#addlistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"Response"},{"id":72,"kind":2048,"name":"emit","url":"classes/response.html#emit","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"Response"},{"id":73,"kind":2048,"name":"on","url":"classes/response.html#on","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"Response"},{"id":74,"kind":2048,"name":"once","url":"classes/response.html#once","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"Response"},{"id":75,"kind":2048,"name":"prependListener","url":"classes/response.html#prependlistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"Response"},{"id":76,"kind":2048,"name":"prependOnceListener","url":"classes/response.html#prependoncelistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"Response"},{"id":77,"kind":2048,"name":"removeListener","url":"classes/response.html#removelistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"Response"},{"id":78,"kind":2048,"name":"pipe","url":"classes/response.html#pipe","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"Response"},{"id":79,"kind":2048,"name":"listenerCount","url":"classes/response.html#listenercount-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"Response"},{"id":80,"kind":1024,"name":"defaultMaxListeners","url":"classes/response.html#defaultmaxlisteners","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"Response"},{"id":81,"kind":2048,"name":"off","url":"classes/response.html#off","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"Response"},{"id":82,"kind":2048,"name":"removeAllListeners","url":"classes/response.html#removealllisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"Response"},{"id":83,"kind":2048,"name":"setMaxListeners","url":"classes/response.html#setmaxlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"Response"},{"id":84,"kind":2048,"name":"getMaxListeners","url":"classes/response.html#getmaxlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"Response"},{"id":85,"kind":2048,"name":"listeners","url":"classes/response.html#listeners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"Response"},{"id":86,"kind":2048,"name":"rawListeners","url":"classes/response.html#rawlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"Response"},{"id":87,"kind":2048,"name":"eventNames","url":"classes/response.html#eventnames","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"Response"},{"id":88,"kind":2048,"name":"listenerCount","url":"classes/response.html#listenercount","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"Response"},{"id":89,"kind":32,"name":"resolve","url":"globals.html#resolve","classes":"tsd-kind-variable tsd-is-not-exported"},{"id":90,"kind":32,"name":"STATUS_CODES","url":"globals.html#status_codes","classes":"tsd-kind-variable tsd-is-not-exported"},{"id":91,"kind":65536,"name":"__type","url":"globals.html#status_codes.__type","classes":"tsd-kind-type-literal tsd-parent-kind-variable tsd-is-not-exported","parent":"STATUS_CODES"},{"id":92,"kind":32,"name":"charsetRegExp","url":"globals.html#charsetregexp","classes":"tsd-kind-variable tsd-is-not-exported"},{"id":93,"kind":64,"name":"setCharset","url":"globals.html#setcharset","classes":"tsd-kind-function tsd-is-not-exported"},{"id":94,"kind":64,"name":"stringify","url":"globals.html#stringify","classes":"tsd-kind-function tsd-is-private tsd-is-not-exported"},{"id":95,"kind":64,"name":"isAbsolute","url":"globals.html#isabsolute","classes":"tsd-kind-function tsd-is-not-exported"},{"id":96,"kind":64,"name":"sendfile","url":"globals.html#sendfile","classes":"tsd-kind-function tsd-is-not-exported"},{"id":97,"kind":64,"name":"acceptParams","url":"globals.html#acceptparams","classes":"tsd-kind-function tsd-is-not-exported"},{"id":98,"kind":64,"name":"normalizeType","url":"globals.html#normalizetype","classes":"tsd-kind-function tsd-is-not-exported"},{"id":99,"kind":64,"name":"normalizeTypes","url":"globals.html#normalizetypes","classes":"tsd-kind-function tsd-is-not-exported"},{"id":100,"kind":2097152,"name":"HTTP","url":"globals.html#http","classes":"tsd-kind-object-literal"},{"id":101,"kind":32,"name":"CONTINUE","url":"globals.html#http.continue","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"HTTP"},{"id":102,"kind":32,"name":"SWITCHING_PROTOCOL","url":"globals.html#http.switching_protocol","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"HTTP"},{"id":103,"kind":32,"name":"PROCESSING","url":"globals.html#http.processing","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"HTTP"},{"id":104,"kind":32,"name":"EARLY_HINTS","url":"globals.html#http.early_hints","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"HTTP"},{"id":105,"kind":32,"name":"OK","url":"globals.html#http.ok","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"HTTP"},{"id":106,"kind":32,"name":"CREATED","url":"globals.html#http.created","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"HTTP"},{"id":107,"kind":32,"name":"ACCEPTED","url":"globals.html#http.accepted","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"HTTP"},{"id":108,"kind":32,"name":"NON_AUTHORITATIVE_INFORMATION","url":"globals.html#http.non_authoritative_information","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"HTTP"},{"id":109,"kind":32,"name":"NO_CONTENT","url":"globals.html#http.no_content","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"HTTP"},{"id":110,"kind":32,"name":"RESET_CONTENT","url":"globals.html#http.reset_content","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"HTTP"},{"id":111,"kind":32,"name":"PARTIAL_CONTENT","url":"globals.html#http.partial_content","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"HTTP"},{"id":112,"kind":32,"name":"MULTI_STATUS","url":"globals.html#http.multi_status","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"HTTP"},{"id":113,"kind":32,"name":"ALREADY_REPORTED","url":"globals.html#http.already_reported","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"HTTP"},{"id":114,"kind":32,"name":"IM_USED","url":"globals.html#http.im_used","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"HTTP"},{"id":115,"kind":32,"name":"MULTIPLE_CHOICES","url":"globals.html#http.multiple_choices","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"HTTP"},{"id":116,"kind":32,"name":"MOVED_PERMANENTLY","url":"globals.html#http.moved_permanently","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"HTTP"},{"id":117,"kind":32,"name":"FOUND","url":"globals.html#http.found","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"HTTP"},{"id":118,"kind":32,"name":"SEE_OTHER","url":"globals.html#http.see_other","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"HTTP"},{"id":119,"kind":32,"name":"NOT_MODIFIED","url":"globals.html#http.not_modified","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"HTTP"},{"id":120,"kind":32,"name":"USE_PROXY","url":"globals.html#http.use_proxy","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"HTTP"},{"id":121,"kind":32,"name":"SWITCH_PROXY","url":"globals.html#http.switch_proxy","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"HTTP"},{"id":122,"kind":32,"name":"TEMPORARY_REDIRECT","url":"globals.html#http.temporary_redirect","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"HTTP"},{"id":123,"kind":32,"name":"PERMANENT_REDIRECT","url":"globals.html#http.permanent_redirect","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"HTTP"},{"id":124,"kind":32,"name":"BAD_REQUEST","url":"globals.html#http.bad_request","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"HTTP"},{"id":125,"kind":32,"name":"UNAUTHORIZED","url":"globals.html#http.unauthorized","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"HTTP"},{"id":126,"kind":32,"name":"PAYMENT_REQUIRED","url":"globals.html#http.payment_required","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"HTTP"},{"id":127,"kind":32,"name":"FORBIDEN","url":"globals.html#http.forbiden","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"HTTP"},{"id":128,"kind":32,"name":"NOT_FOUND","url":"globals.html#http.not_found","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"HTTP"},{"id":129,"kind":32,"name":"METHOD_NOT_ALLOWED","url":"globals.html#http.method_not_allowed","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"HTTP"},{"id":130,"kind":32,"name":"NOT_ACCEPTABLE","url":"globals.html#http.not_acceptable","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"HTTP"},{"id":131,"kind":32,"name":"PROXY_AUTHENTICATION_REQUIRED","url":"globals.html#http.proxy_authentication_required","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"HTTP"},{"id":132,"kind":32,"name":"REQUEST_TIMEOUT","url":"globals.html#http.request_timeout","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"HTTP"},{"id":133,"kind":32,"name":"CONFLICT","url":"globals.html#http.conflict","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"HTTP"},{"id":134,"kind":32,"name":"GONE","url":"globals.html#http.gone","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"HTTP"},{"id":135,"kind":32,"name":"LENGTH_REQUIRED","url":"globals.html#http.length_required","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"HTTP"},{"id":136,"kind":32,"name":"PRECONDITION_FAILED","url":"globals.html#http.precondition_failed","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"HTTP"},{"id":137,"kind":32,"name":"PAYLOAD_TOO_LARGE","url":"globals.html#http.payload_too_large","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"HTTP"},{"id":138,"kind":32,"name":"URI_TOO_LONG","url":"globals.html#http.uri_too_long","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"HTTP"},{"id":139,"kind":32,"name":"UNSUPPORTED_MEDIA_TYPE","url":"globals.html#http.unsupported_media_type","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"HTTP"},{"id":140,"kind":32,"name":"RANGE_NOT_SATISFIABLE","url":"globals.html#http.range_not_satisfiable","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"HTTP"},{"id":141,"kind":32,"name":"EXPECTATION_FAILED","url":"globals.html#http.expectation_failed","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"HTTP"},{"id":142,"kind":32,"name":"IM_A_TEAPOT","url":"globals.html#http.im_a_teapot","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"HTTP"},{"id":143,"kind":32,"name":"MISDIRECET_REQUEST","url":"globals.html#http.misdirecet_request","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"HTTP"},{"id":144,"kind":32,"name":"UNPROCESSABLE_ENTITY","url":"globals.html#http.unprocessable_entity","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"HTTP"},{"id":145,"kind":32,"name":"LOCKED","url":"globals.html#http.locked","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"HTTP"},{"id":146,"kind":32,"name":"FAILED_DEPENDENCY","url":"globals.html#http.failed_dependency","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"HTTP"},{"id":147,"kind":32,"name":"UPGRADE_REQUIRED","url":"globals.html#http.upgrade_required","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"HTTP"},{"id":148,"kind":32,"name":"PRECONDITION_REQUIRED","url":"globals.html#http.precondition_required","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"HTTP"},{"id":149,"kind":32,"name":"TOO_MANY_REQUESTS","url":"globals.html#http.too_many_requests","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"HTTP"},{"id":150,"kind":32,"name":"REQUEST_HEADER_FIELDS_TOO_LARGE","url":"globals.html#http.request_header_fields_too_large","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"HTTP"},{"id":151,"kind":32,"name":"UNAVAILABLE_FOR_LEGAL_REASONS","url":"globals.html#http.unavailable_for_legal_reasons","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"HTTP"},{"id":152,"kind":32,"name":"INTERNAL_SERVER_ERROR","url":"globals.html#http.internal_server_error","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"HTTP"},{"id":153,"kind":32,"name":"NOT_IMPLEMENTED","url":"globals.html#http.not_implemented","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"HTTP"},{"id":154,"kind":32,"name":"BAD_GATEWAY","url":"globals.html#http.bad_gateway","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"HTTP"},{"id":155,"kind":32,"name":"SERVICE_UNAVAILABLE","url":"globals.html#http.service_unavailable","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"HTTP"},{"id":156,"kind":32,"name":"GATEWAY_TIMEOUT","url":"globals.html#http.gateway_timeout","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"HTTP"},{"id":157,"kind":32,"name":"HTTP_VERSION_NOT_SUPPORTED","url":"globals.html#http.http_version_not_supported","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"HTTP"},{"id":158,"kind":32,"name":"VARIANT_ALSO_NEGOTIATES","url":"globals.html#http.variant_also_negotiates","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"HTTP"},{"id":159,"kind":32,"name":"INSUFFICIENT_STORAGE","url":"globals.html#http.insufficient_storage","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"HTTP"},{"id":160,"kind":32,"name":"LOOP_DETECTED","url":"globals.html#http.loop_detected","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"HTTP"},{"id":161,"kind":32,"name":"NOT_EXTENDED","url":"globals.html#http.not_extended","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"HTTP"},{"id":162,"kind":32,"name":"NETWORK_AUTHENTICATION_REQUIRED","url":"globals.html#http.network_authentication_required","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"HTTP"},{"id":163,"kind":128,"name":"Request","url":"classes/request.html","classes":"tsd-kind-class"},{"id":164,"kind":1024,"name":"query","url":"classes/request.html#query","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Request"},{"id":165,"kind":1024,"name":"head","url":"classes/request.html#head","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Request"},{"id":166,"kind":262144,"name":"fresh","url":"classes/request.html#fresh","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"Request"},{"id":167,"kind":262144,"name":"hostname","url":"classes/request.html#hostname","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"Request"},{"id":168,"kind":262144,"name":"path","url":"classes/request.html#path","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"Request"},{"id":169,"kind":262144,"name":"stale","url":"classes/request.html#stale","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"Request"},{"id":170,"kind":262144,"name":"subdomains","url":"classes/request.html#subdomains","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"Request"},{"id":171,"kind":262144,"name":"xhr","url":"classes/request.html#xhr","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"Request"},{"id":172,"kind":2048,"name":"accepts","url":"classes/request.html#accepts","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Request"},{"id":173,"kind":2048,"name":"acceptsCharsets","url":"classes/request.html#acceptscharsets","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Request"},{"id":174,"kind":2048,"name":"acceptsEncodings","url":"classes/request.html#acceptsencodings","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Request"},{"id":175,"kind":2048,"name":"acceptsLanguages","url":"classes/request.html#acceptslanguages","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Request"},{"id":176,"kind":2048,"name":"get","url":"classes/request.html#get","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Request"},{"id":177,"kind":2048,"name":"is","url":"classes/request.html#is","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Request"},{"id":178,"kind":2048,"name":"range","url":"classes/request.html#range","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Request"},{"id":179,"kind":512,"name":"constructor","url":"classes/request.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"Request"},{"id":180,"kind":1024,"name":"httpVersion","url":"classes/request.html#httpversion","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"Request"},{"id":181,"kind":1024,"name":"httpVersionMajor","url":"classes/request.html#httpversionmajor","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"Request"},{"id":182,"kind":1024,"name":"httpVersionMinor","url":"classes/request.html#httpversionminor","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"Request"},{"id":183,"kind":1024,"name":"connection","url":"classes/request.html#connection","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"Request"},{"id":184,"kind":1024,"name":"headers","url":"classes/request.html#headers","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"Request"},{"id":185,"kind":1024,"name":"rawHeaders","url":"classes/request.html#rawheaders","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"Request"},{"id":186,"kind":1024,"name":"trailers","url":"classes/request.html#trailers","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"Request"},{"id":187,"kind":65536,"name":"__type","url":"classes/request.html#trailers.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property","parent":"Request.trailers"},{"id":188,"kind":1024,"name":"rawTrailers","url":"classes/request.html#rawtrailers","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"Request"},{"id":189,"kind":2048,"name":"setTimeout","url":"classes/request.html#settimeout","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Request"},{"id":190,"kind":1024,"name":"method","url":"classes/request.html#method","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"Request"},{"id":191,"kind":1024,"name":"url","url":"classes/request.html#url","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"Request"},{"id":192,"kind":1024,"name":"statusCode","url":"classes/request.html#statuscode","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"Request"},{"id":193,"kind":1024,"name":"statusMessage","url":"classes/request.html#statusmessage","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"Request"},{"id":194,"kind":1024,"name":"socket","url":"classes/request.html#socket","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"Request"},{"id":195,"kind":2048,"name":"destroy","url":"classes/request.html#destroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"Request"},{"id":196,"kind":1024,"name":"readable","url":"classes/request.html#readable","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"Request"},{"id":197,"kind":1024,"name":"readableHighWaterMark","url":"classes/request.html#readablehighwatermark","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"Request"},{"id":198,"kind":1024,"name":"readableLength","url":"classes/request.html#readablelength","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"Request"},{"id":199,"kind":2048,"name":"_read","url":"classes/request.html#_read","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Request"},{"id":200,"kind":2048,"name":"read","url":"classes/request.html#read","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Request"},{"id":201,"kind":2048,"name":"setEncoding","url":"classes/request.html#setencoding","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Request"},{"id":202,"kind":2048,"name":"pause","url":"classes/request.html#pause","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Request"},{"id":203,"kind":2048,"name":"resume","url":"classes/request.html#resume","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Request"},{"id":204,"kind":2048,"name":"isPaused","url":"classes/request.html#ispaused","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Request"},{"id":205,"kind":2048,"name":"unpipe","url":"classes/request.html#unpipe","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"Request"},{"id":206,"kind":2048,"name":"unshift","url":"classes/request.html#unshift","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Request"},{"id":207,"kind":2048,"name":"wrap","url":"classes/request.html#wrap","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Request"},{"id":208,"kind":2048,"name":"push","url":"classes/request.html#push","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Request"},{"id":209,"kind":2048,"name":"_destroy","url":"classes/request.html#_destroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Request"},{"id":210,"kind":2048,"name":"addListener","url":"classes/request.html#addlistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"Request"},{"id":211,"kind":2048,"name":"emit","url":"classes/request.html#emit","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"Request"},{"id":212,"kind":2048,"name":"on","url":"classes/request.html#on","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"Request"},{"id":213,"kind":2048,"name":"once","url":"classes/request.html#once","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"Request"},{"id":214,"kind":2048,"name":"prependListener","url":"classes/request.html#prependlistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"Request"},{"id":215,"kind":2048,"name":"prependOnceListener","url":"classes/request.html#prependoncelistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"Request"},{"id":216,"kind":2048,"name":"removeListener","url":"classes/request.html#removelistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"Request"},{"id":217,"kind":2048,"name":"__@asyncIterator","url":"classes/request.html#___asynciterator","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Request"},{"id":218,"kind":2048,"name":"pipe","url":"classes/request.html#pipe","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"Request"},{"id":219,"kind":2048,"name":"listenerCount","url":"classes/request.html#listenercount-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"Request"},{"id":220,"kind":1024,"name":"defaultMaxListeners","url":"classes/request.html#defaultmaxlisteners","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"Request"},{"id":221,"kind":2048,"name":"off","url":"classes/request.html#off","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"Request"},{"id":222,"kind":2048,"name":"removeAllListeners","url":"classes/request.html#removealllisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"Request"},{"id":223,"kind":2048,"name":"setMaxListeners","url":"classes/request.html#setmaxlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"Request"},{"id":224,"kind":2048,"name":"getMaxListeners","url":"classes/request.html#getmaxlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"Request"},{"id":225,"kind":2048,"name":"listeners","url":"classes/request.html#listeners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"Request"},{"id":226,"kind":2048,"name":"rawListeners","url":"classes/request.html#rawlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"Request"},{"id":227,"kind":2048,"name":"eventNames","url":"classes/request.html#eventnames","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"Request"},{"id":228,"kind":2048,"name":"listenerCount","url":"classes/request.html#listenercount","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"Request"},{"id":229,"kind":128,"name":"HttpException","url":"classes/httpexception.html","classes":"tsd-kind-class"},{"id":230,"kind":1024,"name":"code","url":"classes/httpexception.html#code","classes":"tsd-kind-property tsd-parent-kind-class","parent":"HttpException"},{"id":231,"kind":1024,"name":"errors","url":"classes/httpexception.html#errors","classes":"tsd-kind-property tsd-parent-kind-class","parent":"HttpException"},{"id":232,"kind":2048,"name":"handle","url":"classes/httpexception.html#handle","classes":"tsd-kind-method tsd-parent-kind-class","parent":"HttpException"},{"id":233,"kind":1024,"name":"name","url":"classes/httpexception.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"HttpException"},{"id":234,"kind":1024,"name":"message","url":"classes/httpexception.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"HttpException"},{"id":235,"kind":1024,"name":"stack","url":"classes/httpexception.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"HttpException"},{"id":236,"kind":1024,"name":"Error","url":"classes/httpexception.html#error","classes":"tsd-kind-property tsd-parent-kind-class","parent":"HttpException"},{"id":237,"kind":512,"name":"constructor","url":"classes/httpexception.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"HttpException"},{"id":238,"kind":2048,"name":"handle","url":"classes/httpexception.html#handle-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"HttpException"},{"id":239,"kind":1024,"name":"Error","url":"classes/httpexception.html#error-1","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"HttpException"},{"id":240,"kind":128,"name":"Encapsulation","url":"classes/encapsulation.html","classes":"tsd-kind-class"},{"id":241,"kind":1024,"name":"_fn","url":"classes/encapsulation.html#_fn","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-protected","parent":"Encapsulation"},{"id":242,"kind":65536,"name":"__type","url":"classes/encapsulation.html#_fn.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property","parent":"Encapsulation._fn"},{"id":243,"kind":512,"name":"constructor","url":"classes/encapsulation.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"Encapsulation"},{"id":244,"kind":2048,"name":"run","url":"classes/encapsulation.html#run","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Encapsulation"},{"id":245,"kind":2,"name":"__global","url":"modules/__global.html","classes":"tsd-kind-module tsd-is-not-exported"},{"id":246,"kind":2,"name":"NodeJS","url":"modules/__global.nodejs.html","classes":"tsd-kind-module tsd-parent-kind-module tsd-is-not-exported","parent":"__global"},{"id":247,"kind":256,"name":"Global","url":"interfaces/__global.nodejs.global.html","classes":"tsd-kind-interface tsd-parent-kind-module tsd-is-not-exported","parent":"__global.NodeJS"},{"id":248,"kind":1024,"name":"HttpException","url":"interfaces/__global.nodejs.global.html#httpexception","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-not-exported","parent":"__global.NodeJS.Global"},{"id":249,"kind":1024,"name":"HTTP","url":"interfaces/__global.nodejs.global.html#http","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-not-exported","parent":"__global.NodeJS.Global"},{"id":250,"kind":65536,"name":"__type","url":"interfaces/__global.nodejs.global.html#http.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property tsd-is-not-exported","parent":"__global.NodeJS.Global.HTTP"},{"id":251,"kind":32,"name":"CONTINUE","url":"interfaces/__global.nodejs.global.html#http.__type.continue","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.NodeJS.Global.HTTP.__type"},{"id":252,"kind":32,"name":"SWITCHING_PROTOCOL","url":"interfaces/__global.nodejs.global.html#http.__type.switching_protocol","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.NodeJS.Global.HTTP.__type"},{"id":253,"kind":32,"name":"PROCESSING","url":"interfaces/__global.nodejs.global.html#http.__type.processing","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.NodeJS.Global.HTTP.__type"},{"id":254,"kind":32,"name":"EARLY_HINTS","url":"interfaces/__global.nodejs.global.html#http.__type.early_hints","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.NodeJS.Global.HTTP.__type"},{"id":255,"kind":32,"name":"OK","url":"interfaces/__global.nodejs.global.html#http.__type.ok","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.NodeJS.Global.HTTP.__type"},{"id":256,"kind":32,"name":"CREATED","url":"interfaces/__global.nodejs.global.html#http.__type.created","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.NodeJS.Global.HTTP.__type"},{"id":257,"kind":32,"name":"ACCEPTED","url":"interfaces/__global.nodejs.global.html#http.__type.accepted","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.NodeJS.Global.HTTP.__type"},{"id":258,"kind":32,"name":"NON_AUTHORITATIVE_INFORMATION","url":"interfaces/__global.nodejs.global.html#http.__type.non_authoritative_information","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.NodeJS.Global.HTTP.__type"},{"id":259,"kind":32,"name":"NO_CONTENT","url":"interfaces/__global.nodejs.global.html#http.__type.no_content","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.NodeJS.Global.HTTP.__type"},{"id":260,"kind":32,"name":"RESET_CONTENT","url":"interfaces/__global.nodejs.global.html#http.__type.reset_content","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.NodeJS.Global.HTTP.__type"},{"id":261,"kind":32,"name":"PARTIAL_CONTENT","url":"interfaces/__global.nodejs.global.html#http.__type.partial_content","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.NodeJS.Global.HTTP.__type"},{"id":262,"kind":32,"name":"MULTI_STATUS","url":"interfaces/__global.nodejs.global.html#http.__type.multi_status","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.NodeJS.Global.HTTP.__type"},{"id":263,"kind":32,"name":"ALREADY_REPORTED","url":"interfaces/__global.nodejs.global.html#http.__type.already_reported","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.NodeJS.Global.HTTP.__type"},{"id":264,"kind":32,"name":"IM_USED","url":"interfaces/__global.nodejs.global.html#http.__type.im_used","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.NodeJS.Global.HTTP.__type"},{"id":265,"kind":32,"name":"MULTIPLE_CHOICES","url":"interfaces/__global.nodejs.global.html#http.__type.multiple_choices","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.NodeJS.Global.HTTP.__type"},{"id":266,"kind":32,"name":"MOVED_PERMANENTLY","url":"interfaces/__global.nodejs.global.html#http.__type.moved_permanently","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.NodeJS.Global.HTTP.__type"},{"id":267,"kind":32,"name":"FOUND","url":"interfaces/__global.nodejs.global.html#http.__type.found","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.NodeJS.Global.HTTP.__type"},{"id":268,"kind":32,"name":"SEE_OTHER","url":"interfaces/__global.nodejs.global.html#http.__type.see_other","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.NodeJS.Global.HTTP.__type"},{"id":269,"kind":32,"name":"NOT_MODIFIED","url":"interfaces/__global.nodejs.global.html#http.__type.not_modified","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.NodeJS.Global.HTTP.__type"},{"id":270,"kind":32,"name":"USE_PROXY","url":"interfaces/__global.nodejs.global.html#http.__type.use_proxy","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.NodeJS.Global.HTTP.__type"},{"id":271,"kind":32,"name":"SWITCH_PROXY","url":"interfaces/__global.nodejs.global.html#http.__type.switch_proxy","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.NodeJS.Global.HTTP.__type"},{"id":272,"kind":32,"name":"TEMPORARY_REDIRECT","url":"interfaces/__global.nodejs.global.html#http.__type.temporary_redirect","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.NodeJS.Global.HTTP.__type"},{"id":273,"kind":32,"name":"PERMANENT_REDIRECT","url":"interfaces/__global.nodejs.global.html#http.__type.permanent_redirect","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.NodeJS.Global.HTTP.__type"},{"id":274,"kind":32,"name":"BAD_REQUEST","url":"interfaces/__global.nodejs.global.html#http.__type.bad_request","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.NodeJS.Global.HTTP.__type"},{"id":275,"kind":32,"name":"UNAUTHORIZED","url":"interfaces/__global.nodejs.global.html#http.__type.unauthorized","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.NodeJS.Global.HTTP.__type"},{"id":276,"kind":32,"name":"PAYMENT_REQUIRED","url":"interfaces/__global.nodejs.global.html#http.__type.payment_required","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.NodeJS.Global.HTTP.__type"},{"id":277,"kind":32,"name":"FORBIDEN","url":"interfaces/__global.nodejs.global.html#http.__type.forbiden","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.NodeJS.Global.HTTP.__type"},{"id":278,"kind":32,"name":"NOT_FOUND","url":"interfaces/__global.nodejs.global.html#http.__type.not_found","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.NodeJS.Global.HTTP.__type"},{"id":279,"kind":32,"name":"METHOD_NOT_ALLOWED","url":"interfaces/__global.nodejs.global.html#http.__type.method_not_allowed","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.NodeJS.Global.HTTP.__type"},{"id":280,"kind":32,"name":"NOT_ACCEPTABLE","url":"interfaces/__global.nodejs.global.html#http.__type.not_acceptable","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.NodeJS.Global.HTTP.__type"},{"id":281,"kind":32,"name":"PROXY_AUTHENTICATION_REQUIRED","url":"interfaces/__global.nodejs.global.html#http.__type.proxy_authentication_required","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.NodeJS.Global.HTTP.__type"},{"id":282,"kind":32,"name":"REQUEST_TIMEOUT","url":"interfaces/__global.nodejs.global.html#http.__type.request_timeout","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.NodeJS.Global.HTTP.__type"},{"id":283,"kind":32,"name":"CONFLICT","url":"interfaces/__global.nodejs.global.html#http.__type.conflict","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.NodeJS.Global.HTTP.__type"},{"id":284,"kind":32,"name":"GONE","url":"interfaces/__global.nodejs.global.html#http.__type.gone","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.NodeJS.Global.HTTP.__type"},{"id":285,"kind":32,"name":"LENGTH_REQUIRED","url":"interfaces/__global.nodejs.global.html#http.__type.length_required","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.NodeJS.Global.HTTP.__type"},{"id":286,"kind":32,"name":"PRECONDITION_FAILED","url":"interfaces/__global.nodejs.global.html#http.__type.precondition_failed","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.NodeJS.Global.HTTP.__type"},{"id":287,"kind":32,"name":"PAYLOAD_TOO_LARGE","url":"interfaces/__global.nodejs.global.html#http.__type.payload_too_large","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.NodeJS.Global.HTTP.__type"},{"id":288,"kind":32,"name":"URI_TOO_LONG","url":"interfaces/__global.nodejs.global.html#http.__type.uri_too_long","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.NodeJS.Global.HTTP.__type"},{"id":289,"kind":32,"name":"UNSUPPORTED_MEDIA_TYPE","url":"interfaces/__global.nodejs.global.html#http.__type.unsupported_media_type","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.NodeJS.Global.HTTP.__type"},{"id":290,"kind":32,"name":"RANGE_NOT_SATISFIABLE","url":"interfaces/__global.nodejs.global.html#http.__type.range_not_satisfiable","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.NodeJS.Global.HTTP.__type"},{"id":291,"kind":32,"name":"EXPECTATION_FAILED","url":"interfaces/__global.nodejs.global.html#http.__type.expectation_failed","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.NodeJS.Global.HTTP.__type"},{"id":292,"kind":32,"name":"IM_A_TEAPOT","url":"interfaces/__global.nodejs.global.html#http.__type.im_a_teapot","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.NodeJS.Global.HTTP.__type"},{"id":293,"kind":32,"name":"MISDIRECET_REQUEST","url":"interfaces/__global.nodejs.global.html#http.__type.misdirecet_request","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.NodeJS.Global.HTTP.__type"},{"id":294,"kind":32,"name":"UNPROCESSABLE_ENTITY","url":"interfaces/__global.nodejs.global.html#http.__type.unprocessable_entity","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.NodeJS.Global.HTTP.__type"},{"id":295,"kind":32,"name":"LOCKED","url":"interfaces/__global.nodejs.global.html#http.__type.locked","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.NodeJS.Global.HTTP.__type"},{"id":296,"kind":32,"name":"FAILED_DEPENDENCY","url":"interfaces/__global.nodejs.global.html#http.__type.failed_dependency","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.NodeJS.Global.HTTP.__type"},{"id":297,"kind":32,"name":"UPGRADE_REQUIRED","url":"interfaces/__global.nodejs.global.html#http.__type.upgrade_required","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.NodeJS.Global.HTTP.__type"},{"id":298,"kind":32,"name":"PRECONDITION_REQUIRED","url":"interfaces/__global.nodejs.global.html#http.__type.precondition_required","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.NodeJS.Global.HTTP.__type"},{"id":299,"kind":32,"name":"TOO_MANY_REQUESTS","url":"interfaces/__global.nodejs.global.html#http.__type.too_many_requests","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.NodeJS.Global.HTTP.__type"},{"id":300,"kind":32,"name":"REQUEST_HEADER_FIELDS_TOO_LARGE","url":"interfaces/__global.nodejs.global.html#http.__type.request_header_fields_too_large","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.NodeJS.Global.HTTP.__type"},{"id":301,"kind":32,"name":"UNAVAILABLE_FOR_LEGAL_REASONS","url":"interfaces/__global.nodejs.global.html#http.__type.unavailable_for_legal_reasons","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.NodeJS.Global.HTTP.__type"},{"id":302,"kind":32,"name":"INTERNAL_SERVER_ERROR","url":"interfaces/__global.nodejs.global.html#http.__type.internal_server_error","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.NodeJS.Global.HTTP.__type"},{"id":303,"kind":32,"name":"NOT_IMPLEMENTED","url":"interfaces/__global.nodejs.global.html#http.__type.not_implemented","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.NodeJS.Global.HTTP.__type"},{"id":304,"kind":32,"name":"BAD_GATEWAY","url":"interfaces/__global.nodejs.global.html#http.__type.bad_gateway","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.NodeJS.Global.HTTP.__type"},{"id":305,"kind":32,"name":"SERVICE_UNAVAILABLE","url":"interfaces/__global.nodejs.global.html#http.__type.service_unavailable","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.NodeJS.Global.HTTP.__type"},{"id":306,"kind":32,"name":"GATEWAY_TIMEOUT","url":"interfaces/__global.nodejs.global.html#http.__type.gateway_timeout","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.NodeJS.Global.HTTP.__type"},{"id":307,"kind":32,"name":"HTTP_VERSION_NOT_SUPPORTED","url":"interfaces/__global.nodejs.global.html#http.__type.http_version_not_supported","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.NodeJS.Global.HTTP.__type"},{"id":308,"kind":32,"name":"VARIANT_ALSO_NEGOTIATES","url":"interfaces/__global.nodejs.global.html#http.__type.variant_also_negotiates","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.NodeJS.Global.HTTP.__type"},{"id":309,"kind":32,"name":"INSUFFICIENT_STORAGE","url":"interfaces/__global.nodejs.global.html#http.__type.insufficient_storage","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.NodeJS.Global.HTTP.__type"},{"id":310,"kind":32,"name":"LOOP_DETECTED","url":"interfaces/__global.nodejs.global.html#http.__type.loop_detected","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.NodeJS.Global.HTTP.__type"},{"id":311,"kind":32,"name":"NOT_EXTENDED","url":"interfaces/__global.nodejs.global.html#http.__type.not_extended","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.NodeJS.Global.HTTP.__type"},{"id":312,"kind":32,"name":"NETWORK_AUTHENTICATION_REQUIRED","url":"interfaces/__global.nodejs.global.html#http.__type.network_authentication_required","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.NodeJS.Global.HTTP.__type"},{"id":313,"kind":32,"name":"HttpException","url":"modules/__global.html#httpexception","classes":"tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported","parent":"__global"},{"id":314,"kind":32,"name":"HTTP","url":"modules/__global.html#http","classes":"tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported","parent":"__global"},{"id":315,"kind":65536,"name":"__type","url":"modules/__global.html#http.__type","classes":"tsd-kind-type-literal tsd-parent-kind-variable tsd-is-not-exported","parent":"__global.HTTP"},{"id":316,"kind":32,"name":"CONTINUE","url":"modules/__global.html#http.__type.continue","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.HTTP.__type"},{"id":317,"kind":32,"name":"SWITCHING_PROTOCOL","url":"modules/__global.html#http.__type.switching_protocol","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.HTTP.__type"},{"id":318,"kind":32,"name":"PROCESSING","url":"modules/__global.html#http.__type.processing","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.HTTP.__type"},{"id":319,"kind":32,"name":"EARLY_HINTS","url":"modules/__global.html#http.__type.early_hints","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.HTTP.__type"},{"id":320,"kind":32,"name":"OK","url":"modules/__global.html#http.__type.ok","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.HTTP.__type"},{"id":321,"kind":32,"name":"CREATED","url":"modules/__global.html#http.__type.created","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.HTTP.__type"},{"id":322,"kind":32,"name":"ACCEPTED","url":"modules/__global.html#http.__type.accepted","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.HTTP.__type"},{"id":323,"kind":32,"name":"NON_AUTHORITATIVE_INFORMATION","url":"modules/__global.html#http.__type.non_authoritative_information","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.HTTP.__type"},{"id":324,"kind":32,"name":"NO_CONTENT","url":"modules/__global.html#http.__type.no_content","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.HTTP.__type"},{"id":325,"kind":32,"name":"RESET_CONTENT","url":"modules/__global.html#http.__type.reset_content","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.HTTP.__type"},{"id":326,"kind":32,"name":"PARTIAL_CONTENT","url":"modules/__global.html#http.__type.partial_content","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.HTTP.__type"},{"id":327,"kind":32,"name":"MULTI_STATUS","url":"modules/__global.html#http.__type.multi_status","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.HTTP.__type"},{"id":328,"kind":32,"name":"ALREADY_REPORTED","url":"modules/__global.html#http.__type.already_reported","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.HTTP.__type"},{"id":329,"kind":32,"name":"IM_USED","url":"modules/__global.html#http.__type.im_used","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.HTTP.__type"},{"id":330,"kind":32,"name":"MULTIPLE_CHOICES","url":"modules/__global.html#http.__type.multiple_choices","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.HTTP.__type"},{"id":331,"kind":32,"name":"MOVED_PERMANENTLY","url":"modules/__global.html#http.__type.moved_permanently","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.HTTP.__type"},{"id":332,"kind":32,"name":"FOUND","url":"modules/__global.html#http.__type.found","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.HTTP.__type"},{"id":333,"kind":32,"name":"SEE_OTHER","url":"modules/__global.html#http.__type.see_other","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.HTTP.__type"},{"id":334,"kind":32,"name":"NOT_MODIFIED","url":"modules/__global.html#http.__type.not_modified","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.HTTP.__type"},{"id":335,"kind":32,"name":"USE_PROXY","url":"modules/__global.html#http.__type.use_proxy","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.HTTP.__type"},{"id":336,"kind":32,"name":"SWITCH_PROXY","url":"modules/__global.html#http.__type.switch_proxy","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.HTTP.__type"},{"id":337,"kind":32,"name":"TEMPORARY_REDIRECT","url":"modules/__global.html#http.__type.temporary_redirect","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.HTTP.__type"},{"id":338,"kind":32,"name":"PERMANENT_REDIRECT","url":"modules/__global.html#http.__type.permanent_redirect","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.HTTP.__type"},{"id":339,"kind":32,"name":"BAD_REQUEST","url":"modules/__global.html#http.__type.bad_request","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.HTTP.__type"},{"id":340,"kind":32,"name":"UNAUTHORIZED","url":"modules/__global.html#http.__type.unauthorized","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.HTTP.__type"},{"id":341,"kind":32,"name":"PAYMENT_REQUIRED","url":"modules/__global.html#http.__type.payment_required","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.HTTP.__type"},{"id":342,"kind":32,"name":"FORBIDEN","url":"modules/__global.html#http.__type.forbiden","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.HTTP.__type"},{"id":343,"kind":32,"name":"NOT_FOUND","url":"modules/__global.html#http.__type.not_found","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.HTTP.__type"},{"id":344,"kind":32,"name":"METHOD_NOT_ALLOWED","url":"modules/__global.html#http.__type.method_not_allowed","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.HTTP.__type"},{"id":345,"kind":32,"name":"NOT_ACCEPTABLE","url":"modules/__global.html#http.__type.not_acceptable","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.HTTP.__type"},{"id":346,"kind":32,"name":"PROXY_AUTHENTICATION_REQUIRED","url":"modules/__global.html#http.__type.proxy_authentication_required","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.HTTP.__type"},{"id":347,"kind":32,"name":"REQUEST_TIMEOUT","url":"modules/__global.html#http.__type.request_timeout","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.HTTP.__type"},{"id":348,"kind":32,"name":"CONFLICT","url":"modules/__global.html#http.__type.conflict","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.HTTP.__type"},{"id":349,"kind":32,"name":"GONE","url":"modules/__global.html#http.__type.gone","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.HTTP.__type"},{"id":350,"kind":32,"name":"LENGTH_REQUIRED","url":"modules/__global.html#http.__type.length_required","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.HTTP.__type"},{"id":351,"kind":32,"name":"PRECONDITION_FAILED","url":"modules/__global.html#http.__type.precondition_failed","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.HTTP.__type"},{"id":352,"kind":32,"name":"PAYLOAD_TOO_LARGE","url":"modules/__global.html#http.__type.payload_too_large","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.HTTP.__type"},{"id":353,"kind":32,"name":"URI_TOO_LONG","url":"modules/__global.html#http.__type.uri_too_long","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.HTTP.__type"},{"id":354,"kind":32,"name":"UNSUPPORTED_MEDIA_TYPE","url":"modules/__global.html#http.__type.unsupported_media_type","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.HTTP.__type"},{"id":355,"kind":32,"name":"RANGE_NOT_SATISFIABLE","url":"modules/__global.html#http.__type.range_not_satisfiable","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.HTTP.__type"},{"id":356,"kind":32,"name":"EXPECTATION_FAILED","url":"modules/__global.html#http.__type.expectation_failed","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.HTTP.__type"},{"id":357,"kind":32,"name":"IM_A_TEAPOT","url":"modules/__global.html#http.__type.im_a_teapot","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.HTTP.__type"},{"id":358,"kind":32,"name":"MISDIRECET_REQUEST","url":"modules/__global.html#http.__type.misdirecet_request","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.HTTP.__type"},{"id":359,"kind":32,"name":"UNPROCESSABLE_ENTITY","url":"modules/__global.html#http.__type.unprocessable_entity","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.HTTP.__type"},{"id":360,"kind":32,"name":"LOCKED","url":"modules/__global.html#http.__type.locked","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.HTTP.__type"},{"id":361,"kind":32,"name":"FAILED_DEPENDENCY","url":"modules/__global.html#http.__type.failed_dependency","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.HTTP.__type"},{"id":362,"kind":32,"name":"UPGRADE_REQUIRED","url":"modules/__global.html#http.__type.upgrade_required","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.HTTP.__type"},{"id":363,"kind":32,"name":"PRECONDITION_REQUIRED","url":"modules/__global.html#http.__type.precondition_required","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.HTTP.__type"},{"id":364,"kind":32,"name":"TOO_MANY_REQUESTS","url":"modules/__global.html#http.__type.too_many_requests","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.HTTP.__type"},{"id":365,"kind":32,"name":"REQUEST_HEADER_FIELDS_TOO_LARGE","url":"modules/__global.html#http.__type.request_header_fields_too_large","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.HTTP.__type"},{"id":366,"kind":32,"name":"UNAVAILABLE_FOR_LEGAL_REASONS","url":"modules/__global.html#http.__type.unavailable_for_legal_reasons","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.HTTP.__type"},{"id":367,"kind":32,"name":"INTERNAL_SERVER_ERROR","url":"modules/__global.html#http.__type.internal_server_error","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.HTTP.__type"},{"id":368,"kind":32,"name":"NOT_IMPLEMENTED","url":"modules/__global.html#http.__type.not_implemented","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.HTTP.__type"},{"id":369,"kind":32,"name":"BAD_GATEWAY","url":"modules/__global.html#http.__type.bad_gateway","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.HTTP.__type"},{"id":370,"kind":32,"name":"SERVICE_UNAVAILABLE","url":"modules/__global.html#http.__type.service_unavailable","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.HTTP.__type"},{"id":371,"kind":32,"name":"GATEWAY_TIMEOUT","url":"modules/__global.html#http.__type.gateway_timeout","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.HTTP.__type"},{"id":372,"kind":32,"name":"HTTP_VERSION_NOT_SUPPORTED","url":"modules/__global.html#http.__type.http_version_not_supported","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.HTTP.__type"},{"id":373,"kind":32,"name":"VARIANT_ALSO_NEGOTIATES","url":"modules/__global.html#http.__type.variant_also_negotiates","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.HTTP.__type"},{"id":374,"kind":32,"name":"INSUFFICIENT_STORAGE","url":"modules/__global.html#http.__type.insufficient_storage","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.HTTP.__type"},{"id":375,"kind":32,"name":"LOOP_DETECTED","url":"modules/__global.html#http.__type.loop_detected","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.HTTP.__type"},{"id":376,"kind":32,"name":"NOT_EXTENDED","url":"modules/__global.html#http.__type.not_extended","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.HTTP.__type"},{"id":377,"kind":32,"name":"NETWORK_AUTHENTICATION_REQUIRED","url":"modules/__global.html#http.__type.network_authentication_required","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"__global.HTTP.__type"},{"id":378,"kind":64,"name":"init","url":"globals.html#init","classes":"tsd-kind-function"},{"id":379,"kind":128,"name":"Route","url":"classes/route.html","classes":"tsd-kind-class"},{"id":380,"kind":1024,"name":"get","url":"classes/route.html#get","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"Route"},{"id":381,"kind":1024,"name":"post","url":"classes/route.html#post","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"Route"},{"id":382,"kind":1024,"name":"put","url":"classes/route.html#put","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"Route"},{"id":383,"kind":1024,"name":"head","url":"classes/route.html#head","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"Route"},{"id":384,"kind":1024,"name":"delete","url":"classes/route.html#delete","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"Route"},{"id":385,"kind":1024,"name":"options","url":"classes/route.html#options","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"Route"},{"id":386,"kind":1024,"name":"trace","url":"classes/route.html#trace","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"Route"},{"id":387,"kind":1024,"name":"copy","url":"classes/route.html#copy","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"Route"},{"id":388,"kind":1024,"name":"lock","url":"classes/route.html#lock","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"Route"},{"id":389,"kind":1024,"name":"mkcol","url":"classes/route.html#mkcol","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"Route"},{"id":390,"kind":1024,"name":"move","url":"classes/route.html#move","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"Route"},{"id":391,"kind":1024,"name":"purge","url":"classes/route.html#purge","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"Route"},{"id":392,"kind":1024,"name":"propfind","url":"classes/route.html#propfind","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"Route"},{"id":393,"kind":1024,"name":"proppatch","url":"classes/route.html#proppatch","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"Route"},{"id":394,"kind":1024,"name":"unlock","url":"classes/route.html#unlock","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"Route"},{"id":395,"kind":1024,"name":"report","url":"classes/route.html#report","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"Route"},{"id":396,"kind":1024,"name":"mkactivity","url":"classes/route.html#mkactivity","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"Route"},{"id":397,"kind":1024,"name":"checkout","url":"classes/route.html#checkout","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"Route"},{"id":398,"kind":1024,"name":"merge","url":"classes/route.html#merge","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"Route"},{"id":399,"kind":1024,"name":"m-search","url":"classes/route.html#m_search","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"Route"},{"id":400,"kind":1024,"name":"notify","url":"classes/route.html#notify","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"Route"},{"id":401,"kind":1024,"name":"subscribe","url":"classes/route.html#subscribe","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"Route"},{"id":402,"kind":1024,"name":"unsubscribe","url":"classes/route.html#unsubscribe","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"Route"},{"id":403,"kind":1024,"name":"patch","url":"classes/route.html#patch","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"Route"},{"id":404,"kind":1024,"name":"search","url":"classes/route.html#search","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"Route"},{"id":405,"kind":1024,"name":"connect","url":"classes/route.html#connect","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"Route"},{"id":406,"kind":2048,"name":"isRoute","url":"classes/route.html#isroute","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"Route"},{"id":407,"kind":1024,"name":"_routes","url":"classes/route.html#_routes","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-protected","parent":"Route"},{"id":408,"kind":1024,"name":"_prefix","url":"classes/route.html#_prefix","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-protected","parent":"Route"},{"id":409,"kind":262144,"name":"routes","url":"classes/route.html#routes-1","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"Route"},{"id":410,"kind":512,"name":"constructor","url":"classes/route.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"Route"},{"id":411,"kind":2048,"name":"_push","url":"classes/route.html#_push","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-protected","parent":"Route"},{"id":412,"kind":2048,"name":"any","url":"classes/route.html#any","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Route"},{"id":413,"kind":2048,"name":"oneOf","url":"classes/route.html#oneof","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Route"},{"id":414,"kind":2048,"name":"use","url":"classes/route.html#use","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Route"},{"id":415,"kind":256,"name":"MethodFunctions","url":"interfaces/route.methodfunctions.html","classes":"tsd-kind-interface tsd-parent-kind-class tsd-has-type-parameter","parent":"Route"},{"id":416,"kind":1024,"name":"get","url":"interfaces/route.methodfunctions.html#get","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Route.MethodFunctions"},{"id":417,"kind":1024,"name":"post","url":"interfaces/route.methodfunctions.html#post","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Route.MethodFunctions"},{"id":418,"kind":1024,"name":"put","url":"interfaces/route.methodfunctions.html#put","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Route.MethodFunctions"},{"id":419,"kind":1024,"name":"head","url":"interfaces/route.methodfunctions.html#head","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Route.MethodFunctions"},{"id":420,"kind":1024,"name":"delete","url":"interfaces/route.methodfunctions.html#delete","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Route.MethodFunctions"},{"id":421,"kind":1024,"name":"options","url":"interfaces/route.methodfunctions.html#options","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Route.MethodFunctions"},{"id":422,"kind":1024,"name":"trace","url":"interfaces/route.methodfunctions.html#trace","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Route.MethodFunctions"},{"id":423,"kind":1024,"name":"copy","url":"interfaces/route.methodfunctions.html#copy","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Route.MethodFunctions"},{"id":424,"kind":1024,"name":"lock","url":"interfaces/route.methodfunctions.html#lock","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Route.MethodFunctions"},{"id":425,"kind":1024,"name":"mkcol","url":"interfaces/route.methodfunctions.html#mkcol","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Route.MethodFunctions"},{"id":426,"kind":1024,"name":"move","url":"interfaces/route.methodfunctions.html#move","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Route.MethodFunctions"},{"id":427,"kind":1024,"name":"purge","url":"interfaces/route.methodfunctions.html#purge","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Route.MethodFunctions"},{"id":428,"kind":1024,"name":"propfind","url":"interfaces/route.methodfunctions.html#propfind","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Route.MethodFunctions"},{"id":429,"kind":1024,"name":"proppatch","url":"interfaces/route.methodfunctions.html#proppatch","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Route.MethodFunctions"},{"id":430,"kind":1024,"name":"unlock","url":"interfaces/route.methodfunctions.html#unlock","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Route.MethodFunctions"},{"id":431,"kind":1024,"name":"report","url":"interfaces/route.methodfunctions.html#report","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Route.MethodFunctions"},{"id":432,"kind":1024,"name":"mkactivity","url":"interfaces/route.methodfunctions.html#mkactivity","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Route.MethodFunctions"},{"id":433,"kind":1024,"name":"checkout","url":"interfaces/route.methodfunctions.html#checkout","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Route.MethodFunctions"},{"id":434,"kind":1024,"name":"merge","url":"interfaces/route.methodfunctions.html#merge","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Route.MethodFunctions"},{"id":435,"kind":1024,"name":"m-search","url":"interfaces/route.methodfunctions.html#m_search","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Route.MethodFunctions"},{"id":436,"kind":1024,"name":"notify","url":"interfaces/route.methodfunctions.html#notify","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Route.MethodFunctions"},{"id":437,"kind":1024,"name":"subscribe","url":"interfaces/route.methodfunctions.html#subscribe","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Route.MethodFunctions"},{"id":438,"kind":1024,"name":"unsubscribe","url":"interfaces/route.methodfunctions.html#unsubscribe","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Route.MethodFunctions"},{"id":439,"kind":1024,"name":"patch","url":"interfaces/route.methodfunctions.html#patch","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Route.MethodFunctions"},{"id":440,"kind":1024,"name":"search","url":"interfaces/route.methodfunctions.html#search","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Route.MethodFunctions"},{"id":441,"kind":1024,"name":"connect","url":"interfaces/route.methodfunctions.html#connect","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Route.MethodFunctions"},{"id":442,"kind":256,"name":"Routes","url":"interfaces/route.routes.html","classes":"tsd-kind-interface tsd-parent-kind-class","parent":"Route"},{"id":443,"kind":1024,"name":"get","url":"interfaces/route.routes.html#get","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Route.Routes"},{"id":444,"kind":1024,"name":"post","url":"interfaces/route.routes.html#post","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Route.Routes"},{"id":445,"kind":1024,"name":"put","url":"interfaces/route.routes.html#put","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Route.Routes"},{"id":446,"kind":1024,"name":"head","url":"interfaces/route.routes.html#head","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Route.Routes"},{"id":447,"kind":1024,"name":"delete","url":"interfaces/route.routes.html#delete","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Route.Routes"},{"id":448,"kind":1024,"name":"options","url":"interfaces/route.routes.html#options","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Route.Routes"},{"id":449,"kind":1024,"name":"trace","url":"interfaces/route.routes.html#trace","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Route.Routes"},{"id":450,"kind":1024,"name":"copy","url":"interfaces/route.routes.html#copy","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Route.Routes"},{"id":451,"kind":1024,"name":"lock","url":"interfaces/route.routes.html#lock","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Route.Routes"},{"id":452,"kind":1024,"name":"mkcol","url":"interfaces/route.routes.html#mkcol","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Route.Routes"},{"id":453,"kind":1024,"name":"move","url":"interfaces/route.routes.html#move","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Route.Routes"},{"id":454,"kind":1024,"name":"purge","url":"interfaces/route.routes.html#purge","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Route.Routes"},{"id":455,"kind":1024,"name":"propfind","url":"interfaces/route.routes.html#propfind","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Route.Routes"},{"id":456,"kind":1024,"name":"proppatch","url":"interfaces/route.routes.html#proppatch","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Route.Routes"},{"id":457,"kind":1024,"name":"unlock","url":"interfaces/route.routes.html#unlock","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Route.Routes"},{"id":458,"kind":1024,"name":"report","url":"interfaces/route.routes.html#report","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Route.Routes"},{"id":459,"kind":1024,"name":"mkactivity","url":"interfaces/route.routes.html#mkactivity","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Route.Routes"},{"id":460,"kind":1024,"name":"checkout","url":"interfaces/route.routes.html#checkout","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Route.Routes"},{"id":461,"kind":1024,"name":"merge","url":"interfaces/route.routes.html#merge","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Route.Routes"},{"id":462,"kind":1024,"name":"m-search","url":"interfaces/route.routes.html#m_search","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Route.Routes"},{"id":463,"kind":1024,"name":"notify","url":"interfaces/route.routes.html#notify","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Route.Routes"},{"id":464,"kind":1024,"name":"subscribe","url":"interfaces/route.routes.html#subscribe","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Route.Routes"},{"id":465,"kind":1024,"name":"unsubscribe","url":"interfaces/route.routes.html#unsubscribe","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Route.Routes"},{"id":466,"kind":1024,"name":"patch","url":"interfaces/route.routes.html#patch","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Route.Routes"},{"id":467,"kind":1024,"name":"search","url":"interfaces/route.routes.html#search","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Route.Routes"},{"id":468,"kind":1024,"name":"connect","url":"interfaces/route.routes.html#connect","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Route.Routes"},{"id":469,"kind":256,"name":"RouteObject","url":"interfaces/route.routeobject.html","classes":"tsd-kind-interface tsd-parent-kind-class","parent":"Route"},{"id":470,"kind":1024,"name":"path","url":"interfaces/route.routeobject.html#path","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Route.RouteObject"},{"id":471,"kind":1024,"name":"options","url":"interfaces/route.routeobject.html#options","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Route.RouteObject"},{"id":472,"kind":1024,"name":"controller","url":"interfaces/route.routeobject.html#controller","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Route.RouteObject"},{"id":473,"kind":256,"name":"JsonSchemaProperties","url":"interfaces/route.jsonschemaproperties.html","classes":"tsd-kind-interface tsd-parent-kind-class","parent":"Route"},{"id":474,"kind":256,"name":"JsonSchema","url":"interfaces/route.jsonschema.html","classes":"tsd-kind-interface tsd-parent-kind-class","parent":"Route"},{"id":475,"kind":1024,"name":"title","url":"interfaces/route.jsonschema.html#title","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Route.JsonSchema"},{"id":476,"kind":1024,"name":"type","url":"interfaces/route.jsonschema.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Route.JsonSchema"},{"id":477,"kind":1024,"name":"properties","url":"interfaces/route.jsonschema.html#properties","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Route.JsonSchema"},{"id":478,"kind":1024,"name":"patternProperties","url":"interfaces/route.jsonschema.html#patternproperties","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Route.JsonSchema"},{"id":479,"kind":1024,"name":"additionalProperties","url":"interfaces/route.jsonschema.html#additionalproperties","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Route.JsonSchema"},{"id":480,"kind":1024,"name":"required","url":"interfaces/route.jsonschema.html#required","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Route.JsonSchema"},{"id":481,"kind":256,"name":"Schema","url":"interfaces/route.schema.html","classes":"tsd-kind-interface tsd-parent-kind-class","parent":"Route"},{"id":482,"kind":1024,"name":"response","url":"interfaces/route.schema.html#response","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Route.Schema"},{"id":483,"kind":65536,"name":"__type","url":"interfaces/route.schema.html#response.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property","parent":"Route.Schema.response"},{"id":484,"kind":256,"name":"RouteOptions","url":"interfaces/route.routeoptions.html","classes":"tsd-kind-interface tsd-parent-kind-class","parent":"Route"},{"id":485,"kind":1024,"name":"schema","url":"interfaces/route.routeoptions.html#schema","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Route.RouteOptions"},{"id":486,"kind":4194304,"name":"Controller","url":"classes/route.html#controller","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"Route"},{"id":487,"kind":65536,"name":"__type","url":"classes/route.html#controller.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"Route.Controller"},{"id":488,"kind":4194304,"name":"MethodFunction","url":"classes/route.html#methodfunction","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-has-type-parameter tsd-is-static","parent":"Route"},{"id":489,"kind":65536,"name":"__type","url":"classes/route.html#methodfunction.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"Route.MethodFunction"},{"id":490,"kind":4194304,"name":"JsonSchemaType","url":"classes/route.html#jsonschematype","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"Route"},{"id":491,"kind":128,"name":"Router","url":"classes/router.html","classes":"tsd-kind-class"},{"id":492,"kind":1024,"name":"_routes","url":"classes/router.html#_routes","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-protected","parent":"Router"},{"id":493,"kind":512,"name":"constructor","url":"classes/router.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"Router"},{"id":494,"kind":2048,"name":"_next","url":"classes/router.html#_next","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-protected","parent":"Router"},{"id":495,"kind":1024,"name":"_safeNext","url":"classes/router.html#_safenext","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-protected","parent":"Router"},{"id":496,"kind":2048,"name":"initialize","url":"classes/router.html#initialize","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Router"},{"id":497,"kind":2048,"name":"prepend","url":"classes/router.html#prepend","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Router"},{"id":498,"kind":2048,"name":"push","url":"classes/router.html#push","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Router"},{"id":499,"kind":2048,"name":"route","url":"classes/router.html#route","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Router"},{"id":500,"kind":128,"name":"Foxify","url":"classes/foxify.html","classes":"tsd-kind-class"},{"id":501,"kind":2048,"name":"get","url":"classes/foxify.html#get","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"Foxify"},{"id":502,"kind":2048,"name":"use","url":"classes/foxify.html#use","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Foxify"},{"id":503,"kind":1024,"name":"post","url":"classes/foxify.html#post","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"Foxify"},{"id":504,"kind":1024,"name":"put","url":"classes/foxify.html#put","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"Foxify"},{"id":505,"kind":1024,"name":"head","url":"classes/foxify.html#head","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"Foxify"},{"id":506,"kind":1024,"name":"delete","url":"classes/foxify.html#delete","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"Foxify"},{"id":507,"kind":1024,"name":"options","url":"classes/foxify.html#options-1","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"Foxify"},{"id":508,"kind":1024,"name":"trace","url":"classes/foxify.html#trace","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"Foxify"},{"id":509,"kind":1024,"name":"copy","url":"classes/foxify.html#copy","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"Foxify"},{"id":510,"kind":1024,"name":"lock","url":"classes/foxify.html#lock","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"Foxify"},{"id":511,"kind":1024,"name":"mkcol","url":"classes/foxify.html#mkcol","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"Foxify"},{"id":512,"kind":1024,"name":"move","url":"classes/foxify.html#move","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"Foxify"},{"id":513,"kind":1024,"name":"purge","url":"classes/foxify.html#purge","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"Foxify"},{"id":514,"kind":1024,"name":"propfind","url":"classes/foxify.html#propfind","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"Foxify"},{"id":515,"kind":1024,"name":"proppatch","url":"classes/foxify.html#proppatch","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"Foxify"},{"id":516,"kind":1024,"name":"unlock","url":"classes/foxify.html#unlock","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"Foxify"},{"id":517,"kind":1024,"name":"report","url":"classes/foxify.html#report","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"Foxify"},{"id":518,"kind":1024,"name":"mkactivity","url":"classes/foxify.html#mkactivity","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"Foxify"},{"id":519,"kind":1024,"name":"checkout","url":"classes/foxify.html#checkout","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"Foxify"},{"id":520,"kind":1024,"name":"merge","url":"classes/foxify.html#merge","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"Foxify"},{"id":521,"kind":1024,"name":"m-search","url":"classes/foxify.html#m_search","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"Foxify"},{"id":522,"kind":1024,"name":"notify","url":"classes/foxify.html#notify","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"Foxify"},{"id":523,"kind":1024,"name":"subscribe","url":"classes/foxify.html#subscribe","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"Foxify"},{"id":524,"kind":1024,"name":"unsubscribe","url":"classes/foxify.html#unsubscribe","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"Foxify"},{"id":525,"kind":1024,"name":"patch","url":"classes/foxify.html#patch","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"Foxify"},{"id":526,"kind":1024,"name":"search","url":"classes/foxify.html#search","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"Foxify"},{"id":527,"kind":1024,"name":"connect","url":"classes/foxify.html#connect","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"Foxify"},{"id":528,"kind":1024,"name":"constants","url":"classes/foxify.html#constants","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"Foxify"},{"id":529,"kind":1024,"name":"Route","url":"classes/foxify.html#route","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"Foxify"},{"id":530,"kind":1024,"name":"static","url":"classes/foxify.html#static","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"Foxify"},{"id":531,"kind":2048,"name":"dotenv","url":"classes/foxify.html#dotenv","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"Foxify"},{"id":532,"kind":2097152,"name":"_options","url":"classes/foxify.html#_options","classes":"tsd-kind-object-literal tsd-parent-kind-class tsd-is-private","parent":"Foxify"},{"id":533,"kind":32,"name":"https","url":"classes/foxify.html#_options.https","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"Foxify._options"},{"id":534,"kind":32,"name":"x-powered-by","url":"classes/foxify.html#_options.x_powered_by","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"Foxify._options"},{"id":535,"kind":2097152,"name":"routing","url":"classes/foxify.html#_options.routing","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"Foxify._options"},{"id":536,"kind":32,"name":"strict","url":"classes/foxify.html#_options.routing.strict","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"Foxify._options.routing"},{"id":537,"kind":32,"name":"sensitive","url":"classes/foxify.html#_options.routing.sensitive","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"Foxify._options.routing"},{"id":538,"kind":2097152,"name":"json","url":"classes/foxify.html#_options.json","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"Foxify._options"},{"id":539,"kind":32,"name":"escape","url":"classes/foxify.html#_options.json.escape","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"Foxify._options.json"},{"id":540,"kind":2097152,"name":"_settings","url":"classes/foxify.html#_settings","classes":"tsd-kind-object-literal tsd-parent-kind-class tsd-is-private","parent":"Foxify"},{"id":541,"kind":32,"name":"env","url":"classes/foxify.html#_settings.env","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"Foxify._settings"},{"id":542,"kind":32,"name":"url","url":"classes/foxify.html#_settings.url","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"Foxify._settings"},{"id":543,"kind":32,"name":"port","url":"classes/foxify.html#_settings.port","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"Foxify._settings"},{"id":544,"kind":32,"name":"workers","url":"classes/foxify.html#_settings.workers","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"Foxify._settings"},{"id":545,"kind":2097152,"name":"subdomain","url":"classes/foxify.html#_settings.subdomain","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"Foxify._settings"},{"id":546,"kind":32,"name":"offset","url":"classes/foxify.html#_settings.subdomain.offset","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"Foxify._settings.subdomain"},{"id":547,"kind":2097152,"name":"https","url":"classes/foxify.html#_settings.https-1","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"Foxify._settings"},{"id":548,"kind":32,"name":"cert","url":"classes/foxify.html#_settings.https-1.cert","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"Foxify._settings.https"},{"id":549,"kind":32,"name":"key","url":"classes/foxify.html#_settings.https-1.key","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"Foxify._settings.https"},{"id":550,"kind":2097152,"name":"json","url":"classes/foxify.html#_settings.json-1","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"Foxify._settings"},{"id":551,"kind":32,"name":"replacer","url":"classes/foxify.html#_settings.json-1.replacer","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"Foxify._settings.json"},{"id":552,"kind":32,"name":"spaces","url":"classes/foxify.html#_settings.json-1.spaces","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"Foxify._settings.json"},{"id":553,"kind":2097152,"name":"query","url":"classes/foxify.html#_settings.query","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"Foxify._settings"},{"id":554,"kind":32,"name":"parser","url":"classes/foxify.html#_settings.query.parser","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"Foxify._settings.query"},{"id":555,"kind":1024,"name":"_router","url":"classes/foxify.html#_router","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Foxify"},{"id":556,"kind":1024,"name":"_view","url":"classes/foxify.html#_view","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Foxify"},{"id":557,"kind":512,"name":"constructor","url":"classes/foxify.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"Foxify"},{"id":558,"kind":2048,"name":"_set","url":"classes/foxify.html#_set","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"Foxify"},{"id":559,"kind":2048,"name":"_use","url":"classes/foxify.html#_use","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"Foxify"},{"id":560,"kind":2048,"name":"enable","url":"classes/foxify.html#enable","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Foxify"},{"id":561,"kind":2048,"name":"disable","url":"classes/foxify.html#disable","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Foxify"},{"id":562,"kind":2048,"name":"enabled","url":"classes/foxify.html#enabled","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Foxify"},{"id":563,"kind":2048,"name":"disabled","url":"classes/foxify.html#disabled","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Foxify"},{"id":564,"kind":2048,"name":"set","url":"classes/foxify.html#set","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Foxify"},{"id":565,"kind":2048,"name":"engine","url":"classes/foxify.html#engine","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Foxify"},{"id":566,"kind":2048,"name":"start","url":"classes/foxify.html#start","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Foxify"},{"id":567,"kind":256,"name":"Options","url":"interfaces/foxify.options.html","classes":"tsd-kind-interface tsd-parent-kind-class","parent":"Foxify"},{"id":568,"kind":1024,"name":"https","url":"interfaces/foxify.options.html#https","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Foxify.Options"},{"id":569,"kind":1024,"name":"x-powered-by","url":"interfaces/foxify.options.html#x_powered_by","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Foxify.Options"},{"id":570,"kind":1024,"name":"routing","url":"interfaces/foxify.options.html#routing","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Foxify.Options"},{"id":571,"kind":65536,"name":"__type","url":"interfaces/foxify.options.html#routing.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-property","parent":"Foxify.Options.routing"},{"id":572,"kind":32,"name":"strict","url":"interfaces/foxify.options.html#routing.__type-1.strict","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"Foxify.Options.routing.__type"},{"id":573,"kind":32,"name":"sensitive","url":"interfaces/foxify.options.html#routing.__type-1.sensitive","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"Foxify.Options.routing.__type"},{"id":574,"kind":1024,"name":"json","url":"interfaces/foxify.options.html#json","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Foxify.Options"},{"id":575,"kind":65536,"name":"__type","url":"interfaces/foxify.options.html#json.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property","parent":"Foxify.Options.json"},{"id":576,"kind":32,"name":"escape","url":"interfaces/foxify.options.html#json.__type.escape","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"Foxify.Options.json.__type"},{"id":577,"kind":256,"name":"Settings","url":"interfaces/foxify.settings.html","classes":"tsd-kind-interface tsd-parent-kind-class","parent":"Foxify"},{"id":578,"kind":1024,"name":"env","url":"interfaces/foxify.settings.html#env","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Foxify.Settings"},{"id":579,"kind":1024,"name":"url","url":"interfaces/foxify.settings.html#url","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Foxify.Settings"},{"id":580,"kind":1024,"name":"port","url":"interfaces/foxify.settings.html#port","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Foxify.Settings"},{"id":581,"kind":1024,"name":"workers","url":"interfaces/foxify.settings.html#workers","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Foxify.Settings"},{"id":582,"kind":1024,"name":"subdomain","url":"interfaces/foxify.settings.html#subdomain","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Foxify.Settings"},{"id":583,"kind":65536,"name":"__type","url":"interfaces/foxify.settings.html#subdomain.__type-3","classes":"tsd-kind-type-literal tsd-parent-kind-property","parent":"Foxify.Settings.subdomain"},{"id":584,"kind":32,"name":"offset","url":"interfaces/foxify.settings.html#subdomain.__type-3.offset","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"Foxify.Settings.subdomain.__type"},{"id":585,"kind":1024,"name":"https","url":"interfaces/foxify.settings.html#https","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Foxify.Settings"},{"id":586,"kind":65536,"name":"__type","url":"interfaces/foxify.settings.html#https.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property","parent":"Foxify.Settings.https"},{"id":587,"kind":32,"name":"cert","url":"interfaces/foxify.settings.html#https.__type.cert","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"Foxify.Settings.https.__type"},{"id":588,"kind":32,"name":"key","url":"interfaces/foxify.settings.html#https.__type.key","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"Foxify.Settings.https.__type"},{"id":589,"kind":1024,"name":"json","url":"interfaces/foxify.settings.html#json","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Foxify.Settings"},{"id":590,"kind":65536,"name":"__type","url":"interfaces/foxify.settings.html#json.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-property","parent":"Foxify.Settings.json"},{"id":591,"kind":32,"name":"replacer","url":"interfaces/foxify.settings.html#json.__type-1.replacer","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"Foxify.Settings.json.__type"},{"id":592,"kind":32,"name":"spaces","url":"interfaces/foxify.settings.html#json.__type-1.spaces","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"Foxify.Settings.json.__type"},{"id":593,"kind":1024,"name":"query","url":"interfaces/foxify.settings.html#query","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Foxify.Settings"},{"id":594,"kind":65536,"name":"__type","url":"interfaces/foxify.settings.html#query.__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-property","parent":"Foxify.Settings.query"},{"id":595,"kind":32,"name":"parser","url":"interfaces/foxify.settings.html#query.__type-2.parser","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"Foxify.Settings.query.__type"},{"id":596,"kind":4194304,"name":"Request","url":"classes/foxify.html#request","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"Foxify"},{"id":597,"kind":4194304,"name":"Response","url":"classes/foxify.html#response","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"Foxify"},{"id":598,"kind":128,"name":"Server","url":"classes/server.html","classes":"tsd-kind-class"},{"id":599,"kind":1024,"name":"_instance","url":"classes/server.html#_instance","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Server"},{"id":600,"kind":1024,"name":"_host","url":"classes/server.html#_host","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-protected","parent":"Server"},{"id":601,"kind":1024,"name":"_port","url":"classes/server.html#_port","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-protected","parent":"Server"},{"id":602,"kind":1024,"name":"_listening","url":"classes/server.html#_listening","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-protected","parent":"Server"},{"id":603,"kind":512,"name":"constructor","url":"classes/server.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"Server"},{"id":604,"kind":262144,"name":"listening","url":"classes/server.html#listening","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"Server"},{"id":605,"kind":2048,"name":"start","url":"classes/server.html#start","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Server"},{"id":606,"kind":2048,"name":"stop","url":"classes/server.html#stop","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Server"},{"id":607,"kind":2048,"name":"reload","url":"classes/server.html#reload","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Server"},{"id":608,"kind":256,"name":"Options","url":"interfaces/server.options.html","classes":"tsd-kind-interface tsd-parent-kind-class","parent":"Server"},{"id":609,"kind":1024,"name":"https","url":"interfaces/server.options.html#https","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"Server.Options"},{"id":610,"kind":1024,"name":"x-powered-by","url":"interfaces/server.options.html#x_powered_by","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"Server.Options"},{"id":611,"kind":1024,"name":"routing","url":"interfaces/server.options.html#routing","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"Server.Options"},{"id":612,"kind":65536,"name":"__type","url":"interfaces/server.options.html#routing.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-property","parent":"Server.Options.routing"},{"id":613,"kind":32,"name":"strict","url":"interfaces/server.options.html#routing.__type-1.strict","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"Server.Options.routing.__type"},{"id":614,"kind":32,"name":"sensitive","url":"interfaces/server.options.html#routing.__type-1.sensitive","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"Server.Options.routing.__type"},{"id":615,"kind":1024,"name":"json","url":"interfaces/server.options.html#json","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"Server.Options"},{"id":616,"kind":65536,"name":"__type","url":"interfaces/server.options.html#json.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property","parent":"Server.Options.json"},{"id":617,"kind":32,"name":"escape","url":"interfaces/server.options.html#json.__type.escape","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"Server.Options.json.__type"},{"id":618,"kind":256,"name":"Settings","url":"interfaces/server.settings.html","classes":"tsd-kind-interface tsd-parent-kind-class","parent":"Server"},{"id":619,"kind":1024,"name":"view","url":"interfaces/server.settings.html#view","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Server.Settings"},{"id":620,"kind":1024,"name":"env","url":"interfaces/server.settings.html#env","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"Server.Settings"},{"id":621,"kind":1024,"name":"url","url":"interfaces/server.settings.html#url","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"Server.Settings"},{"id":622,"kind":1024,"name":"port","url":"interfaces/server.settings.html#port","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"Server.Settings"},{"id":623,"kind":1024,"name":"workers","url":"interfaces/server.settings.html#workers","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"Server.Settings"},{"id":624,"kind":1024,"name":"subdomain","url":"interfaces/server.settings.html#subdomain","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"Server.Settings"},{"id":625,"kind":65536,"name":"__type","url":"interfaces/server.settings.html#subdomain.__type-3","classes":"tsd-kind-type-literal tsd-parent-kind-property","parent":"Server.Settings.subdomain"},{"id":626,"kind":32,"name":"offset","url":"interfaces/server.settings.html#subdomain.__type-3.offset","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"Server.Settings.subdomain.__type"},{"id":627,"kind":1024,"name":"https","url":"interfaces/server.settings.html#https","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"Server.Settings"},{"id":628,"kind":65536,"name":"__type","url":"interfaces/server.settings.html#https.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property","parent":"Server.Settings.https"},{"id":629,"kind":32,"name":"cert","url":"interfaces/server.settings.html#https.__type.cert","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"Server.Settings.https.__type"},{"id":630,"kind":32,"name":"key","url":"interfaces/server.settings.html#https.__type.key","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"Server.Settings.https.__type"},{"id":631,"kind":1024,"name":"json","url":"interfaces/server.settings.html#json","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"Server.Settings"},{"id":632,"kind":65536,"name":"__type","url":"interfaces/server.settings.html#json.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-property","parent":"Server.Settings.json"},{"id":633,"kind":32,"name":"replacer","url":"interfaces/server.settings.html#json.__type-1.replacer","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"Server.Settings.json.__type"},{"id":634,"kind":32,"name":"spaces","url":"interfaces/server.settings.html#json.__type-1.spaces","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"Server.Settings.json.__type"},{"id":635,"kind":1024,"name":"query","url":"interfaces/server.settings.html#query","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"Server.Settings"},{"id":636,"kind":65536,"name":"__type","url":"interfaces/server.settings.html#query.__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-property","parent":"Server.Settings.query"},{"id":637,"kind":32,"name":"parser","url":"interfaces/server.settings.html#query.__type-2.parser","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"Server.Settings.query.__type"},{"id":638,"kind":4194304,"name":"Listener","url":"classes/server.html#listener","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"Server"},{"id":639,"kind":65536,"name":"__type","url":"classes/server.html#listener.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"Server.Listener"},{"id":640,"kind":4194304,"name":"Callback","url":"classes/server.html#callback","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"Server"},{"id":641,"kind":65536,"name":"__type","url":"classes/server.html#callback.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"Server.Callback"}]}; \ No newline at end of file diff --git a/docs/classes/encapsulation.html b/docs/classes/encapsulation.html index 8fb3c13..0685d37 100644 --- a/docs/classes/encapsulation.html +++ b/docs/classes/encapsulation.html @@ -111,7 +111,7 @@

constructor

  • Parameters

    @@ -121,17 +121,17 @@
    fn: function
    @@ -951,12 +984,6 @@

    Returns this normalizeTypes

  • -
  • - patch -
  • -
  • - query -
  • sendfile
  • diff --git a/docs/classes/router.html b/docs/classes/router.html index 4427f54..23ffde3 100644 --- a/docs/classes/router.html +++ b/docs/classes/router.html @@ -116,7 +116,7 @@

    constructor

  • Returns Router

    @@ -132,7 +132,7 @@

    Protected _routes

    _routes: Routes = {} as Route.Routes
    @@ -142,7 +142,7 @@

    Protected _safeNext

    _safeNext: Encapsulation = new Encapsulation(this._next)
    @@ -153,22 +153,22 @@

    Methods

    Protected _next