react-router 7.16.0 → 8.0.0-pre.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +0 -1
- package/dist/development/dom-export.d.ts +6 -172
- package/dist/development/dom-export.js +12 -1007
- package/dist/development/index-react-server-client.d.ts +7 -4
- package/dist/development/index-react-server-client.js +8 -52
- package/dist/development/index-react-server.d.ts +1645 -1635
- package/dist/development/index-react-server.js +2880 -3642
- package/dist/development/index.d.ts +43 -1475
- package/dist/development/index.js +37 -2621
- package/dist/development/lib/actions.js +62 -0
- package/dist/development/lib/components.d.ts +1022 -0
- package/dist/development/lib/components.js +835 -0
- package/dist/development/lib/context.d.ts +83 -0
- package/dist/development/lib/context.js +41 -0
- package/dist/development/lib/dom/dom.d.ts +119 -0
- package/dist/development/lib/dom/dom.js +143 -0
- package/dist/development/lib/dom/lib.d.ts +2042 -0
- package/dist/development/lib/dom/lib.js +1259 -0
- package/dist/development/lib/dom/server.d.ts +138 -0
- package/dist/development/lib/dom/server.js +301 -0
- package/dist/development/lib/dom/ssr/components.d.ts +196 -0
- package/dist/development/lib/dom/ssr/components.js +579 -0
- package/dist/development/lib/dom/ssr/data.js +29 -0
- package/dist/development/lib/dom/ssr/entry.d.ts +59 -0
- package/dist/development/lib/dom/ssr/errorBoundaries.d.ts +27 -0
- package/dist/development/lib/dom/ssr/errorBoundaries.js +83 -0
- package/dist/development/lib/dom/ssr/errors.d.ts +7 -0
- package/dist/development/lib/dom/ssr/errors.js +36 -0
- package/dist/development/lib/dom/ssr/fallback.js +28 -0
- package/dist/development/lib/dom/ssr/fog-of-war.d.ts +12 -0
- package/dist/development/lib/dom/ssr/fog-of-war.js +170 -0
- package/dist/development/lib/dom/ssr/hydration.d.ts +32 -0
- package/dist/development/lib/dom/ssr/hydration.js +29 -0
- package/dist/development/lib/dom/ssr/invariant.js +16 -0
- package/dist/development/lib/dom/ssr/links.js +170 -0
- package/dist/development/lib/dom/ssr/markup.js +24 -0
- package/dist/development/lib/dom/ssr/routeModules.d.ts +206 -0
- package/dist/development/lib/dom/ssr/routeModules.js +31 -0
- package/dist/development/lib/dom/ssr/routes-test-stub.d.ts +62 -0
- package/dist/development/lib/dom/ssr/routes-test-stub.js +108 -0
- package/dist/development/lib/dom/ssr/routes.d.ts +33 -0
- package/dist/development/lib/dom/ssr/routes.js +303 -0
- package/dist/development/lib/dom/ssr/server.d.ts +45 -0
- package/dist/development/lib/dom/ssr/server.js +68 -0
- package/dist/development/lib/dom/ssr/single-fetch.d.ts +14 -0
- package/dist/development/lib/dom/ssr/single-fetch.js +346 -0
- package/dist/development/lib/dom-export/dom-router-provider.d.ts +9 -0
- package/dist/development/lib/dom-export/dom-router-provider.js +22 -0
- package/dist/development/lib/dom-export/hydrated-router.d.ts +125 -0
- package/dist/development/lib/dom-export/hydrated-router.js +153 -0
- package/dist/development/lib/errors.js +29 -0
- package/dist/development/lib/hooks.d.ts +947 -0
- package/dist/development/lib/hooks.js +1386 -0
- package/dist/development/lib/href.d.ts +20 -0
- package/dist/development/lib/href.js +50 -0
- package/dist/development/lib/router/history.d.ts +258 -0
- package/dist/development/lib/router/history.js +371 -0
- package/dist/development/lib/router/instrumentation.d.ts +86 -0
- package/dist/development/lib/router/instrumentation.js +213 -0
- package/dist/development/lib/router/links.d.ts +113 -0
- package/dist/development/lib/router/router.d.ts +663 -0
- package/dist/development/lib/router/router.js +2981 -0
- package/dist/development/lib/router/utils.d.ts +942 -0
- package/dist/development/lib/router/utils.js +791 -0
- package/dist/development/lib/rsc/browser.d.ts +137 -0
- package/dist/development/lib/rsc/browser.js +599 -0
- package/dist/development/lib/rsc/errorBoundaries.d.ts +11 -0
- package/dist/development/lib/rsc/errorBoundaries.js +90 -0
- package/dist/development/lib/rsc/html-stream/browser.d.ts +48 -0
- package/dist/development/lib/rsc/html-stream/browser.js +74 -0
- package/dist/development/lib/rsc/html-stream/server.js +78 -0
- package/dist/development/lib/rsc/route-modules.js +27 -0
- package/dist/development/lib/rsc/server.rsc.d.ts +219 -0
- package/dist/development/lib/rsc/server.ssr.d.ts +129 -0
- package/dist/development/lib/rsc/server.ssr.js +388 -0
- package/dist/development/lib/server-runtime/build.d.ts +66 -0
- package/dist/development/lib/server-runtime/cookies.d.ts +66 -0
- package/dist/development/lib/server-runtime/cookies.js +139 -0
- package/dist/development/lib/server-runtime/crypto.js +43 -0
- package/dist/development/lib/server-runtime/data.d.ts +13 -0
- package/dist/development/lib/server-runtime/data.js +25 -0
- package/dist/development/lib/server-runtime/dev.d.ts +9 -0
- package/dist/development/lib/server-runtime/dev.js +26 -0
- package/dist/development/lib/server-runtime/entry.js +20 -0
- package/dist/development/lib/server-runtime/errors.js +95 -0
- package/dist/development/lib/server-runtime/headers.js +73 -0
- package/dist/development/lib/server-runtime/invariant.js +19 -0
- package/dist/development/lib/server-runtime/mode.d.ts +12 -0
- package/dist/development/lib/server-runtime/mode.js +25 -0
- package/dist/development/lib/server-runtime/routeMatching.js +28 -0
- package/dist/development/lib/server-runtime/routes.d.ts +13 -0
- package/dist/development/lib/server-runtime/routes.js +74 -0
- package/dist/development/lib/server-runtime/server.d.ts +10 -0
- package/dist/development/lib/server-runtime/server.js +351 -0
- package/dist/development/lib/server-runtime/serverHandoff.js +17 -0
- package/dist/development/lib/server-runtime/sessions/cookieStorage.d.ts +25 -0
- package/dist/development/lib/server-runtime/sessions/cookieStorage.js +45 -0
- package/dist/development/lib/server-runtime/sessions/memoryStorage.d.ts +23 -0
- package/dist/development/lib/server-runtime/sessions/memoryStorage.js +52 -0
- package/dist/development/lib/server-runtime/sessions.d.ts +145 -0
- package/dist/development/lib/server-runtime/sessions.js +98 -0
- package/dist/development/lib/server-runtime/single-fetch.d.ts +7 -0
- package/dist/development/lib/server-runtime/single-fetch.js +215 -0
- package/dist/development/lib/server-runtime/urls.js +31 -0
- package/dist/development/lib/server-runtime/warnings.js +20 -0
- package/dist/development/lib/types/future.d.ts +9 -0
- package/dist/development/lib/types/internal.d.ts +26 -177
- package/dist/development/lib/types/internal.js +3 -2
- package/dist/{production/register-CNAx3TXj.d.ts → development/lib/types/register.d.ts} +9 -15
- package/dist/development/lib/types/route-data.d.ts +113 -0
- package/dist/development/lib/types/route-module-annotations.d.ts +149 -0
- package/dist/development/lib/types/route-module.d.ts +19 -0
- package/dist/development/lib/types/serializes-to.d.ts +13 -0
- package/dist/development/lib/types/utils.d.ts +11 -0
- package/dist/development/vendor/turbo-stream-v2/flatten.js +159 -0
- package/dist/development/vendor/turbo-stream-v2/turbo-stream.js +178 -0
- package/dist/development/vendor/turbo-stream-v2/unflatten.js +198 -0
- package/dist/development/vendor/turbo-stream-v2/utils.js +47 -0
- package/dist/production/dom-export.d.ts +6 -172
- package/dist/production/dom-export.js +12 -1007
- package/dist/production/index-react-server-client.d.ts +7 -4
- package/dist/production/index-react-server-client.js +8 -52
- package/dist/production/index-react-server.d.ts +1645 -1635
- package/dist/production/index-react-server.js +2871 -3642
- package/dist/production/index.d.ts +43 -1475
- package/dist/production/index.js +37 -2621
- package/dist/production/lib/actions.js +62 -0
- package/dist/production/lib/components.d.ts +1022 -0
- package/dist/production/lib/components.js +835 -0
- package/dist/production/lib/context.d.ts +83 -0
- package/dist/production/lib/context.js +41 -0
- package/dist/production/lib/dom/dom.d.ts +119 -0
- package/dist/production/lib/dom/dom.js +143 -0
- package/dist/production/lib/dom/lib.d.ts +2042 -0
- package/dist/production/lib/dom/lib.js +1259 -0
- package/dist/production/lib/dom/server.d.ts +138 -0
- package/dist/production/lib/dom/server.js +301 -0
- package/dist/production/lib/dom/ssr/components.d.ts +196 -0
- package/dist/production/lib/dom/ssr/components.js +579 -0
- package/dist/production/lib/dom/ssr/data.js +29 -0
- package/dist/production/lib/dom/ssr/entry.d.ts +59 -0
- package/dist/production/lib/dom/ssr/errorBoundaries.d.ts +27 -0
- package/dist/production/lib/dom/ssr/errorBoundaries.js +83 -0
- package/dist/production/lib/dom/ssr/errors.d.ts +7 -0
- package/dist/production/lib/dom/ssr/errors.js +36 -0
- package/dist/production/lib/dom/ssr/fallback.js +21 -0
- package/dist/production/lib/dom/ssr/fog-of-war.d.ts +12 -0
- package/dist/production/lib/dom/ssr/fog-of-war.js +170 -0
- package/dist/production/lib/dom/ssr/hydration.d.ts +32 -0
- package/dist/production/lib/dom/ssr/hydration.js +29 -0
- package/dist/production/lib/dom/ssr/invariant.js +16 -0
- package/dist/production/lib/dom/ssr/links.js +170 -0
- package/dist/production/lib/dom/ssr/markup.js +24 -0
- package/dist/production/lib/dom/ssr/routeModules.d.ts +206 -0
- package/dist/production/lib/dom/ssr/routeModules.js +31 -0
- package/dist/production/lib/dom/ssr/routes-test-stub.d.ts +62 -0
- package/dist/production/lib/dom/ssr/routes-test-stub.js +108 -0
- package/dist/production/lib/dom/ssr/routes.d.ts +33 -0
- package/dist/production/lib/dom/ssr/routes.js +303 -0
- package/dist/production/lib/dom/ssr/server.d.ts +45 -0
- package/dist/production/lib/dom/ssr/server.js +68 -0
- package/dist/production/lib/dom/ssr/single-fetch.d.ts +14 -0
- package/dist/production/lib/dom/ssr/single-fetch.js +346 -0
- package/dist/production/lib/dom-export/dom-router-provider.d.ts +9 -0
- package/dist/production/lib/dom-export/dom-router-provider.js +22 -0
- package/dist/production/lib/dom-export/hydrated-router.d.ts +125 -0
- package/dist/production/lib/dom-export/hydrated-router.js +153 -0
- package/dist/production/lib/errors.js +29 -0
- package/dist/production/lib/hooks.d.ts +947 -0
- package/dist/production/lib/hooks.js +1371 -0
- package/dist/production/lib/href.d.ts +20 -0
- package/dist/production/lib/href.js +50 -0
- package/dist/production/lib/router/history.d.ts +258 -0
- package/dist/production/lib/router/history.js +371 -0
- package/dist/production/lib/router/instrumentation.d.ts +86 -0
- package/dist/production/lib/router/instrumentation.js +213 -0
- package/dist/production/lib/router/links.d.ts +113 -0
- package/dist/production/lib/router/router.d.ts +663 -0
- package/dist/production/lib/router/router.js +2981 -0
- package/dist/production/lib/router/utils.d.ts +942 -0
- package/dist/production/lib/router/utils.js +782 -0
- package/dist/production/lib/rsc/browser.d.ts +137 -0
- package/dist/production/lib/rsc/browser.js +599 -0
- package/dist/production/lib/rsc/errorBoundaries.d.ts +11 -0
- package/dist/production/lib/rsc/errorBoundaries.js +90 -0
- package/dist/production/lib/rsc/html-stream/browser.d.ts +48 -0
- package/dist/production/lib/rsc/html-stream/browser.js +74 -0
- package/dist/production/lib/rsc/html-stream/server.js +78 -0
- package/dist/production/lib/rsc/route-modules.js +27 -0
- package/dist/production/lib/rsc/server.rsc.d.ts +219 -0
- package/dist/production/lib/rsc/server.ssr.d.ts +129 -0
- package/dist/production/lib/rsc/server.ssr.js +388 -0
- package/dist/production/lib/server-runtime/build.d.ts +66 -0
- package/dist/production/lib/server-runtime/cookies.d.ts +66 -0
- package/dist/production/lib/server-runtime/cookies.js +139 -0
- package/dist/production/lib/server-runtime/crypto.js +43 -0
- package/dist/production/lib/server-runtime/data.d.ts +13 -0
- package/dist/production/lib/server-runtime/data.js +25 -0
- package/dist/production/lib/server-runtime/dev.d.ts +9 -0
- package/dist/production/lib/server-runtime/dev.js +26 -0
- package/dist/production/lib/server-runtime/entry.js +20 -0
- package/dist/production/lib/server-runtime/errors.js +95 -0
- package/dist/production/lib/server-runtime/headers.js +73 -0
- package/dist/production/lib/server-runtime/invariant.js +19 -0
- package/dist/production/lib/server-runtime/mode.d.ts +12 -0
- package/dist/production/lib/server-runtime/mode.js +25 -0
- package/dist/production/lib/server-runtime/routeMatching.js +28 -0
- package/dist/production/lib/server-runtime/routes.d.ts +13 -0
- package/dist/production/lib/server-runtime/routes.js +74 -0
- package/dist/production/lib/server-runtime/server.d.ts +10 -0
- package/dist/production/lib/server-runtime/server.js +351 -0
- package/dist/production/lib/server-runtime/serverHandoff.js +17 -0
- package/dist/production/lib/server-runtime/sessions/cookieStorage.d.ts +25 -0
- package/dist/production/lib/server-runtime/sessions/cookieStorage.js +45 -0
- package/dist/production/lib/server-runtime/sessions/memoryStorage.d.ts +23 -0
- package/dist/production/lib/server-runtime/sessions/memoryStorage.js +52 -0
- package/dist/production/lib/server-runtime/sessions.d.ts +145 -0
- package/dist/production/lib/server-runtime/sessions.js +98 -0
- package/dist/production/lib/server-runtime/single-fetch.d.ts +7 -0
- package/dist/production/lib/server-runtime/single-fetch.js +215 -0
- package/dist/production/lib/server-runtime/urls.js +31 -0
- package/dist/production/lib/server-runtime/warnings.js +20 -0
- package/dist/production/lib/types/future.d.ts +9 -0
- package/dist/production/lib/types/internal.d.ts +26 -177
- package/dist/production/lib/types/internal.js +3 -2
- package/dist/{development/register-CNAx3TXj.d.ts → production/lib/types/register.d.ts} +9 -15
- package/dist/production/lib/types/route-data.d.ts +113 -0
- package/dist/production/lib/types/route-module-annotations.d.ts +149 -0
- package/dist/production/lib/types/route-module.d.ts +19 -0
- package/dist/production/lib/types/serializes-to.d.ts +13 -0
- package/dist/production/lib/types/utils.d.ts +11 -0
- package/dist/production/vendor/turbo-stream-v2/flatten.js +159 -0
- package/dist/production/vendor/turbo-stream-v2/turbo-stream.js +178 -0
- package/dist/production/vendor/turbo-stream-v2/unflatten.js +198 -0
- package/dist/production/vendor/turbo-stream-v2/utils.js +47 -0
- package/docs/explanation/backend-for-frontend.md +50 -0
- package/docs/explanation/code-splitting.md +77 -0
- package/docs/explanation/concurrency.md +135 -0
- package/docs/explanation/form-vs-fetcher.md +292 -0
- package/docs/explanation/hot-module-replacement.md +137 -0
- package/docs/explanation/hydration.md +14 -0
- package/docs/explanation/index-query-param.md +86 -0
- package/docs/explanation/index.md +4 -0
- package/docs/explanation/lazy-route-discovery.md +78 -0
- package/docs/explanation/location.md +6 -0
- package/docs/explanation/progressive-enhancement.md +150 -0
- package/docs/explanation/race-conditions.md +88 -0
- package/docs/explanation/react-transitions.md +160 -0
- package/docs/explanation/route-matching.md +7 -0
- package/docs/explanation/server-client-execution.md +4 -0
- package/docs/explanation/sessions-and-cookies.md +465 -0
- package/docs/explanation/special-files.md +16 -0
- package/docs/explanation/state-management.md +524 -0
- package/docs/explanation/styling.md +87 -0
- package/docs/explanation/type-safety.md +82 -0
- package/docs/how-to/accessibility.md +44 -0
- package/docs/how-to/client-data.md +199 -0
- package/docs/how-to/data-strategy.md +317 -0
- package/docs/how-to/error-boundary.md +231 -0
- package/docs/how-to/error-reporting.md +134 -0
- package/docs/how-to/fetchers.md +307 -0
- package/docs/how-to/file-route-conventions.md +410 -0
- package/docs/how-to/file-uploads.md +217 -0
- package/docs/how-to/form-validation.md +120 -0
- package/docs/how-to/headers.md +164 -0
- package/docs/how-to/index.md +4 -0
- package/docs/how-to/instrumentation.md +556 -0
- package/docs/how-to/meta.md +40 -0
- package/docs/how-to/middleware.md +728 -0
- package/docs/how-to/navigation-blocking.md +233 -0
- package/docs/how-to/optimize-revalidation.md +12 -0
- package/docs/how-to/pre-rendering.md +225 -0
- package/docs/how-to/presets.md +103 -0
- package/docs/how-to/react-server-components.md +899 -0
- package/docs/how-to/resource-routes.md +126 -0
- package/docs/how-to/route-module-type-safety.md +100 -0
- package/docs/how-to/search-params.md +4 -0
- package/docs/how-to/security.md +30 -0
- package/docs/how-to/server-bundles.md +66 -0
- package/docs/how-to/spa.md +120 -0
- package/docs/how-to/status.md +63 -0
- package/docs/how-to/suspense.md +132 -0
- package/docs/how-to/using-handle.md +117 -0
- package/docs/how-to/view-transitions.md +237 -0
- package/docs/how-to/webhook.md +50 -0
- package/docs/index.md +39 -0
- package/docs/start/data/actions.md +138 -0
- package/docs/start/data/custom.md +198 -0
- package/docs/start/data/data-loading.md +44 -0
- package/docs/start/data/index.md +4 -0
- package/docs/start/data/installation.md +52 -0
- package/docs/start/data/navigating.md +12 -0
- package/docs/start/data/pending-ui.md +12 -0
- package/docs/start/data/route-object.md +248 -0
- package/docs/start/data/routing.md +281 -0
- package/docs/start/data/testing.md +8 -0
- package/docs/start/declarative/index.md +4 -0
- package/docs/start/declarative/installation.md +43 -0
- package/docs/start/declarative/navigating.md +133 -0
- package/docs/start/declarative/routing.md +237 -0
- package/docs/start/declarative/url-values.md +65 -0
- package/docs/start/framework/actions.md +175 -0
- package/docs/start/framework/data-loading.md +201 -0
- package/docs/start/framework/deploying.md +96 -0
- package/docs/start/framework/index.md +4 -0
- package/docs/start/framework/installation.md +42 -0
- package/docs/start/framework/navigating.md +182 -0
- package/docs/start/framework/pending-ui.md +142 -0
- package/docs/start/framework/rendering.md +59 -0
- package/docs/start/framework/route-module.md +527 -0
- package/docs/start/framework/routing.md +362 -0
- package/docs/start/framework/testing.md +133 -0
- package/docs/start/index.md +4 -0
- package/docs/start/modes.md +201 -0
- package/docs/upgrading/component-routes.md +363 -0
- package/docs/upgrading/future.md +31 -0
- package/docs/upgrading/index.md +4 -0
- package/docs/upgrading/remix.md +403 -0
- package/docs/upgrading/router-provider.md +442 -0
- package/docs/upgrading/v6.md +379 -0
- package/package.json +44 -87
- package/dist/development/browser-D3uq9sI1.d.ts +0 -318
- package/dist/development/browser-nIQ4Nsyi.d.mts +0 -318
- package/dist/development/chunk-IBI7OMNB.js +0 -1363
- package/dist/development/chunk-QUQL4437.mjs +0 -11529
- package/dist/development/chunk-S54KXAEJ.mjs +0 -2585
- package/dist/development/chunk-SRID2YZ2.js +0 -10229
- package/dist/development/chunk-XEJDWL2B.js +0 -188
- package/dist/development/context-m8rizgnE.d.mts +0 -1771
- package/dist/development/data-D4xhSy90.d.ts +0 -1732
- package/dist/development/data-U8FS-wNn.d.mts +0 -1732
- package/dist/development/dom-export.d.mts +0 -172
- package/dist/development/dom-export.mjs +0 -1008
- package/dist/development/index-react-server-client-BLiUx67a.d.ts +0 -3655
- package/dist/development/index-react-server-client-CdKROblb.d.mts +0 -2600
- package/dist/development/index-react-server-client.d.mts +0 -4
- package/dist/development/index-react-server-client.mjs +0 -59
- package/dist/development/index-react-server.d.mts +0 -2703
- package/dist/development/index-react-server.mjs +0 -3780
- package/dist/development/index.d.mts +0 -1478
- package/dist/development/index.mjs +0 -277
- package/dist/development/instrumentation-1q4YhLGP.d.ts +0 -715
- package/dist/development/lib/types/internal.d.mts +0 -184
- package/dist/development/lib/types/internal.mjs +0 -10
- package/dist/development/register-CqK96Zfk.d.mts +0 -30
- package/dist/production/browser-D3uq9sI1.d.ts +0 -318
- package/dist/production/browser-nIQ4Nsyi.d.mts +0 -318
- package/dist/production/chunk-EAQNHM3N.js +0 -188
- package/dist/production/chunk-NALGHHKE.mjs +0 -2585
- package/dist/production/chunk-Q65P7S7Y.mjs +0 -11529
- package/dist/production/chunk-SKEDDLRM.js +0 -1363
- package/dist/production/chunk-Y7DNFQZP.js +0 -10229
- package/dist/production/context-m8rizgnE.d.mts +0 -1771
- package/dist/production/data-D4xhSy90.d.ts +0 -1732
- package/dist/production/data-U8FS-wNn.d.mts +0 -1732
- package/dist/production/dom-export.d.mts +0 -172
- package/dist/production/dom-export.mjs +0 -1008
- package/dist/production/index-react-server-client-BLiUx67a.d.ts +0 -3655
- package/dist/production/index-react-server-client-CdKROblb.d.mts +0 -2600
- package/dist/production/index-react-server-client.d.mts +0 -4
- package/dist/production/index-react-server-client.mjs +0 -59
- package/dist/production/index-react-server.d.mts +0 -2703
- package/dist/production/index-react-server.mjs +0 -3780
- package/dist/production/index.d.mts +0 -1478
- package/dist/production/index.mjs +0 -277
- package/dist/production/instrumentation-1q4YhLGP.d.ts +0 -715
- package/dist/production/lib/types/internal.d.mts +0 -184
- package/dist/production/lib/types/internal.mjs +0 -10
- package/dist/production/register-CqK96Zfk.d.mts +0 -30
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
|
|
2
|
+
//#region lib/server-runtime/data.d.ts
|
|
3
|
+
/**
|
|
4
|
+
* An object of unknown type for route loaders and actions provided by the
|
|
5
|
+
* server's `getLoadContext()` function. This is defined as an empty interface
|
|
6
|
+
* specifically so apps can leverage declaration merging to augment this type
|
|
7
|
+
* globally: https://www.typescriptlang.org/docs/handbook/declaration-merging.html
|
|
8
|
+
*/
|
|
9
|
+
interface AppLoadContext {
|
|
10
|
+
[key: string]: unknown;
|
|
11
|
+
}
|
|
12
|
+
//#endregion
|
|
13
|
+
export { AppLoadContext };
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* react-router v8.0.0-pre.0
|
|
3
|
+
*
|
|
4
|
+
* Copyright (c) Remix Software Inc.
|
|
5
|
+
*
|
|
6
|
+
* This source code is licensed under the MIT license found in the
|
|
7
|
+
* LICENSE.md file in the root directory of this source tree.
|
|
8
|
+
*
|
|
9
|
+
* @license MIT
|
|
10
|
+
*/
|
|
11
|
+
import { isDataWithResponseInit, isRedirectStatusCode } from "../router/router.js";
|
|
12
|
+
//#region lib/server-runtime/data.ts
|
|
13
|
+
async function callRouteHandler(handler, args) {
|
|
14
|
+
let result = await handler({
|
|
15
|
+
request: args.request,
|
|
16
|
+
url: args.url,
|
|
17
|
+
params: args.params,
|
|
18
|
+
context: args.context,
|
|
19
|
+
pattern: args.pattern
|
|
20
|
+
});
|
|
21
|
+
if (isDataWithResponseInit(result) && result.init && result.init.status && isRedirectStatusCode(result.init.status)) throw new Response(null, result.init);
|
|
22
|
+
return result;
|
|
23
|
+
}
|
|
24
|
+
//#endregion
|
|
25
|
+
export { callRouteHandler };
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
|
|
2
|
+
//#region lib/server-runtime/dev.d.ts
|
|
3
|
+
type DevServerHooks = {
|
|
4
|
+
getCriticalCss?: (pathname: string) => Promise<string | undefined>;
|
|
5
|
+
processRequestError?: (error: unknown) => void;
|
|
6
|
+
};
|
|
7
|
+
declare function setDevServerHooks(devServerHooks: DevServerHooks): void;
|
|
8
|
+
//#endregion
|
|
9
|
+
export { setDevServerHooks };
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* react-router v8.0.0-pre.0
|
|
3
|
+
*
|
|
4
|
+
* Copyright (c) Remix Software Inc.
|
|
5
|
+
*
|
|
6
|
+
* This source code is licensed under the MIT license found in the
|
|
7
|
+
* LICENSE.md file in the root directory of this source tree.
|
|
8
|
+
*
|
|
9
|
+
* @license MIT
|
|
10
|
+
*/
|
|
11
|
+
//#region lib/server-runtime/dev.ts
|
|
12
|
+
const globalDevServerHooksKey = "__reactRouterDevServerHooks";
|
|
13
|
+
function setDevServerHooks(devServerHooks) {
|
|
14
|
+
globalThis[globalDevServerHooksKey] = devServerHooks;
|
|
15
|
+
}
|
|
16
|
+
function getDevServerHooks() {
|
|
17
|
+
return globalThis[globalDevServerHooksKey];
|
|
18
|
+
}
|
|
19
|
+
function getBuildTimeHeader(request, headerName) {
|
|
20
|
+
if (typeof process !== "undefined") try {
|
|
21
|
+
if (process.env.hasOwnProperty("IS_RR_BUILD_REQUEST") && process.env.IS_RR_BUILD_REQUEST === "yes") return request.headers.get(headerName);
|
|
22
|
+
} catch (e) {}
|
|
23
|
+
return null;
|
|
24
|
+
}
|
|
25
|
+
//#endregion
|
|
26
|
+
export { getBuildTimeHeader, getDevServerHooks, setDevServerHooks };
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* react-router v8.0.0-pre.0
|
|
3
|
+
*
|
|
4
|
+
* Copyright (c) Remix Software Inc.
|
|
5
|
+
*
|
|
6
|
+
* This source code is licensed under the MIT license found in the
|
|
7
|
+
* LICENSE.md file in the root directory of this source tree.
|
|
8
|
+
*
|
|
9
|
+
* @license MIT
|
|
10
|
+
*/
|
|
11
|
+
//#region lib/server-runtime/entry.ts
|
|
12
|
+
function createEntryRouteModules(manifest) {
|
|
13
|
+
return Object.keys(manifest).reduce((memo, routeId) => {
|
|
14
|
+
let route = manifest[routeId];
|
|
15
|
+
if (route) memo[routeId] = route.module;
|
|
16
|
+
return memo;
|
|
17
|
+
}, {});
|
|
18
|
+
}
|
|
19
|
+
//#endregion
|
|
20
|
+
export { createEntryRouteModules };
|
|
@@ -0,0 +1,95 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* react-router v8.0.0-pre.0
|
|
3
|
+
*
|
|
4
|
+
* Copyright (c) Remix Software Inc.
|
|
5
|
+
*
|
|
6
|
+
* This source code is licensed under the MIT license found in the
|
|
7
|
+
* LICENSE.md file in the root directory of this source tree.
|
|
8
|
+
*
|
|
9
|
+
* @license MIT
|
|
10
|
+
*/
|
|
11
|
+
import { isRouteErrorResponse } from "../router/utils.js";
|
|
12
|
+
import "./mode.js";
|
|
13
|
+
//#region lib/server-runtime/errors.ts
|
|
14
|
+
/**
|
|
15
|
+
* This thing probably warrants some explanation.
|
|
16
|
+
*
|
|
17
|
+
* The whole point here is to emulate componentDidCatch for server rendering and
|
|
18
|
+
* data loading. It can get tricky. React can do this on component boundaries
|
|
19
|
+
* but doesn't support it for server rendering or data loading. We know enough
|
|
20
|
+
* with nested routes to be able to emulate the behavior (because we know them
|
|
21
|
+
* statically before rendering.)
|
|
22
|
+
*
|
|
23
|
+
* Each route can export an `ErrorBoundary`.
|
|
24
|
+
*
|
|
25
|
+
* - When rendering throws an error, the nearest error boundary will render
|
|
26
|
+
* (normal react componentDidCatch). This will be the route's own boundary, but
|
|
27
|
+
* if none is provided, it will bubble up to the parents.
|
|
28
|
+
* - When data loading throws an error, the nearest error boundary will render
|
|
29
|
+
* - When performing an action, the nearest error boundary for the action's
|
|
30
|
+
* route tree will render (no redirect happens)
|
|
31
|
+
*
|
|
32
|
+
* During normal react rendering, we do nothing special, just normal
|
|
33
|
+
* componentDidCatch.
|
|
34
|
+
*
|
|
35
|
+
* For server rendering, we mutate `renderBoundaryRouteId` to know the last
|
|
36
|
+
* layout that has an error boundary that tried to render. This emulates which
|
|
37
|
+
* layout would catch a thrown error. If the rendering fails, we catch the error
|
|
38
|
+
* on the server, and go again a second time with the emulator holding on to the
|
|
39
|
+
* information it needs to render the same error boundary as a dynamically
|
|
40
|
+
* thrown render error.
|
|
41
|
+
*
|
|
42
|
+
* When data loading, server or client side, we use the emulator to likewise
|
|
43
|
+
* hang on to the error and re-render at the appropriate layout (where a thrown
|
|
44
|
+
* error would have been caught by cDC).
|
|
45
|
+
*
|
|
46
|
+
* When actions throw, it all works the same. There's an edge case to be aware
|
|
47
|
+
* of though. Actions normally are required to redirect, but in the case of
|
|
48
|
+
* errors, we render the action's route with the emulator holding on to the
|
|
49
|
+
* error. If during this render a parent route/loader throws we ignore that new
|
|
50
|
+
* error and render the action's original error as deeply as possible. In other
|
|
51
|
+
* words, we simply ignore the new error and use the action's error in place
|
|
52
|
+
* because it came first, and that just wouldn't be fair to let errors cut in
|
|
53
|
+
* line.
|
|
54
|
+
*/
|
|
55
|
+
function sanitizeError(error, serverMode) {
|
|
56
|
+
if (error instanceof Error && serverMode !== "development") {
|
|
57
|
+
let sanitized = /* @__PURE__ */ new Error("Unexpected Server Error");
|
|
58
|
+
sanitized.stack = void 0;
|
|
59
|
+
return sanitized;
|
|
60
|
+
}
|
|
61
|
+
return error;
|
|
62
|
+
}
|
|
63
|
+
function sanitizeErrors(errors, serverMode) {
|
|
64
|
+
return Object.entries(errors).reduce((acc, [routeId, error]) => {
|
|
65
|
+
return Object.assign(acc, { [routeId]: sanitizeError(error, serverMode) });
|
|
66
|
+
}, {});
|
|
67
|
+
}
|
|
68
|
+
function serializeError(error, serverMode) {
|
|
69
|
+
let sanitized = sanitizeError(error, serverMode);
|
|
70
|
+
return {
|
|
71
|
+
message: sanitized.message,
|
|
72
|
+
stack: sanitized.stack
|
|
73
|
+
};
|
|
74
|
+
}
|
|
75
|
+
function serializeErrors(errors, serverMode) {
|
|
76
|
+
if (!errors) return null;
|
|
77
|
+
let entries = Object.entries(errors);
|
|
78
|
+
let serialized = {};
|
|
79
|
+
for (let [key, val] of entries) if (isRouteErrorResponse(val)) serialized[key] = {
|
|
80
|
+
...val,
|
|
81
|
+
__type: "RouteErrorResponse"
|
|
82
|
+
};
|
|
83
|
+
else if (val instanceof Error) {
|
|
84
|
+
let sanitized = sanitizeError(val, serverMode);
|
|
85
|
+
serialized[key] = {
|
|
86
|
+
message: sanitized.message,
|
|
87
|
+
stack: sanitized.stack,
|
|
88
|
+
__type: "Error",
|
|
89
|
+
...sanitized.name !== "Error" ? { __subType: sanitized.name } : {}
|
|
90
|
+
};
|
|
91
|
+
} else serialized[key] = val;
|
|
92
|
+
return serialized;
|
|
93
|
+
}
|
|
94
|
+
//#endregion
|
|
95
|
+
export { sanitizeError, sanitizeErrors, serializeError, serializeErrors };
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* react-router v8.0.0-pre.0
|
|
3
|
+
*
|
|
4
|
+
* Copyright (c) Remix Software Inc.
|
|
5
|
+
*
|
|
6
|
+
* This source code is licensed under the MIT license found in the
|
|
7
|
+
* LICENSE.md file in the root directory of this source tree.
|
|
8
|
+
*
|
|
9
|
+
* @license MIT
|
|
10
|
+
*/
|
|
11
|
+
import invariant from "./invariant.js";
|
|
12
|
+
import { splitSetCookieString } from "cookie-es";
|
|
13
|
+
//#region lib/server-runtime/headers.ts
|
|
14
|
+
function getDocumentHeaders(context, build) {
|
|
15
|
+
return getDocumentHeadersImpl(context, (m) => {
|
|
16
|
+
let route = build.routes[m.route.id];
|
|
17
|
+
invariant(route, `Route with id "${m.route.id}" not found in build`);
|
|
18
|
+
return route.module.headers;
|
|
19
|
+
});
|
|
20
|
+
}
|
|
21
|
+
function getDocumentHeadersImpl(context, getRouteHeadersFn, _defaultHeaders) {
|
|
22
|
+
let boundaryIdx = context.errors ? context.matches.findIndex((m) => context.errors[m.route.id]) : -1;
|
|
23
|
+
let matches = boundaryIdx >= 0 ? context.matches.slice(0, boundaryIdx + 1) : context.matches;
|
|
24
|
+
let errorHeaders;
|
|
25
|
+
if (boundaryIdx >= 0) {
|
|
26
|
+
let { actionHeaders, actionData, loaderHeaders, loaderData } = context;
|
|
27
|
+
context.matches.slice(boundaryIdx).some((match) => {
|
|
28
|
+
let id = match.route.id;
|
|
29
|
+
if (actionHeaders[id] && (!actionData || !actionData.hasOwnProperty(id))) errorHeaders = actionHeaders[id];
|
|
30
|
+
else if (loaderHeaders[id] && !loaderData.hasOwnProperty(id)) errorHeaders = loaderHeaders[id];
|
|
31
|
+
return errorHeaders != null;
|
|
32
|
+
});
|
|
33
|
+
}
|
|
34
|
+
const defaultHeaders = new Headers(_defaultHeaders);
|
|
35
|
+
return matches.reduce((parentHeaders, match, idx) => {
|
|
36
|
+
let { id } = match.route;
|
|
37
|
+
let loaderHeaders = context.loaderHeaders[id] || new Headers();
|
|
38
|
+
let actionHeaders = context.actionHeaders[id] || new Headers();
|
|
39
|
+
let includeErrorHeaders = errorHeaders != null && idx === matches.length - 1;
|
|
40
|
+
let includeErrorCookies = includeErrorHeaders && errorHeaders !== loaderHeaders && errorHeaders !== actionHeaders;
|
|
41
|
+
let headersFn = getRouteHeadersFn(match);
|
|
42
|
+
if (headersFn == null) {
|
|
43
|
+
let headers = new Headers(parentHeaders);
|
|
44
|
+
if (includeErrorCookies) prependCookies(errorHeaders, headers);
|
|
45
|
+
prependCookies(actionHeaders, headers);
|
|
46
|
+
prependCookies(loaderHeaders, headers);
|
|
47
|
+
return headers;
|
|
48
|
+
}
|
|
49
|
+
let headers = new Headers(typeof headersFn === "function" ? headersFn({
|
|
50
|
+
loaderHeaders,
|
|
51
|
+
parentHeaders,
|
|
52
|
+
actionHeaders,
|
|
53
|
+
errorHeaders: includeErrorHeaders ? errorHeaders : void 0
|
|
54
|
+
}) : headersFn);
|
|
55
|
+
if (includeErrorCookies) prependCookies(errorHeaders, headers);
|
|
56
|
+
prependCookies(actionHeaders, headers);
|
|
57
|
+
prependCookies(loaderHeaders, headers);
|
|
58
|
+
prependCookies(parentHeaders, headers);
|
|
59
|
+
return headers;
|
|
60
|
+
}, new Headers(defaultHeaders));
|
|
61
|
+
}
|
|
62
|
+
function prependCookies(parentHeaders, childHeaders) {
|
|
63
|
+
let parentSetCookieString = parentHeaders.get("Set-Cookie");
|
|
64
|
+
if (parentSetCookieString) {
|
|
65
|
+
let cookies = splitSetCookieString(parentSetCookieString);
|
|
66
|
+
let childCookies = new Set(childHeaders.getSetCookie());
|
|
67
|
+
cookies.forEach((cookie) => {
|
|
68
|
+
if (!childCookies.has(cookie)) childHeaders.append("Set-Cookie", cookie);
|
|
69
|
+
});
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
//#endregion
|
|
73
|
+
export { getDocumentHeaders };
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* react-router v8.0.0-pre.0
|
|
3
|
+
*
|
|
4
|
+
* Copyright (c) Remix Software Inc.
|
|
5
|
+
*
|
|
6
|
+
* This source code is licensed under the MIT license found in the
|
|
7
|
+
* LICENSE.md file in the root directory of this source tree.
|
|
8
|
+
*
|
|
9
|
+
* @license MIT
|
|
10
|
+
*/
|
|
11
|
+
//#region lib/server-runtime/invariant.ts
|
|
12
|
+
function invariant(value, message) {
|
|
13
|
+
if (value === false || value === null || typeof value === "undefined") {
|
|
14
|
+
console.error("The following error is a bug in React Router; please open an issue! https://github.com/remix-run/react-router/issues/new/choose");
|
|
15
|
+
throw new Error(message);
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
//#endregion
|
|
19
|
+
export { invariant as default };
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* react-router v8.0.0-pre.0
|
|
3
|
+
*
|
|
4
|
+
* Copyright (c) Remix Software Inc.
|
|
5
|
+
*
|
|
6
|
+
* This source code is licensed under the MIT license found in the
|
|
7
|
+
* LICENSE.md file in the root directory of this source tree.
|
|
8
|
+
*
|
|
9
|
+
* @license MIT
|
|
10
|
+
*/
|
|
11
|
+
//#region lib/server-runtime/mode.ts
|
|
12
|
+
/**
|
|
13
|
+
* The mode to use when running the server.
|
|
14
|
+
*/
|
|
15
|
+
let ServerMode = /* @__PURE__ */ function(ServerMode) {
|
|
16
|
+
ServerMode["Development"] = "development";
|
|
17
|
+
ServerMode["Production"] = "production";
|
|
18
|
+
ServerMode["Test"] = "test";
|
|
19
|
+
return ServerMode;
|
|
20
|
+
}({});
|
|
21
|
+
function isServerMode(value) {
|
|
22
|
+
return value === "development" || value === "production" || value === "test";
|
|
23
|
+
}
|
|
24
|
+
//#endregion
|
|
25
|
+
export { ServerMode, isServerMode };
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* react-router v8.0.0-pre.0
|
|
3
|
+
*
|
|
4
|
+
* Copyright (c) Remix Software Inc.
|
|
5
|
+
*
|
|
6
|
+
* This source code is licensed under the MIT license found in the
|
|
7
|
+
* LICENSE.md file in the root directory of this source tree.
|
|
8
|
+
*
|
|
9
|
+
* @license MIT
|
|
10
|
+
*/
|
|
11
|
+
import { matchRoutesImpl } from "../router/utils.js";
|
|
12
|
+
import invariant from "./invariant.js";
|
|
13
|
+
//#region lib/server-runtime/routeMatching.ts
|
|
14
|
+
function matchServerRoutes(manifest, dataRoutes, branches, pathname, basename) {
|
|
15
|
+
let matches = matchRoutesImpl(dataRoutes, pathname, basename ?? "/", false, branches);
|
|
16
|
+
if (!matches) return null;
|
|
17
|
+
return matches.map((match) => {
|
|
18
|
+
let route = manifest[match.route.id];
|
|
19
|
+
invariant(route, `Route with id "${match.route.id}" not found in manifest.`);
|
|
20
|
+
return {
|
|
21
|
+
params: match.params,
|
|
22
|
+
pathname: match.pathname,
|
|
23
|
+
route
|
|
24
|
+
};
|
|
25
|
+
});
|
|
26
|
+
}
|
|
27
|
+
//#endregion
|
|
28
|
+
export { matchServerRoutes };
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
|
|
2
|
+
import { RouteManifest } from "../router/utils.js";
|
|
3
|
+
import { ServerRouteModule } from "../dom/ssr/routeModules.js";
|
|
4
|
+
import { Route } from "../dom/ssr/routes.js";
|
|
5
|
+
|
|
6
|
+
//#region lib/server-runtime/routes.d.ts
|
|
7
|
+
type ServerRouteManifest = RouteManifest<Omit<ServerRoute, "children">>;
|
|
8
|
+
interface ServerRoute extends Route {
|
|
9
|
+
children: ServerRoute[];
|
|
10
|
+
module: ServerRouteModule;
|
|
11
|
+
}
|
|
12
|
+
//#endregion
|
|
13
|
+
export { ServerRouteManifest };
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* react-router v8.0.0-pre.0
|
|
3
|
+
*
|
|
4
|
+
* Copyright (c) Remix Software Inc.
|
|
5
|
+
*
|
|
6
|
+
* This source code is licensed under the MIT license found in the
|
|
7
|
+
* LICENSE.md file in the root directory of this source tree.
|
|
8
|
+
*
|
|
9
|
+
* @license MIT
|
|
10
|
+
*/
|
|
11
|
+
import { redirect, redirectDocument, replace } from "../router/utils.js";
|
|
12
|
+
import { SingleFetchRedirectSymbol, decodeViaTurboStream } from "../dom/ssr/single-fetch.js";
|
|
13
|
+
import invariant from "./invariant.js";
|
|
14
|
+
import { callRouteHandler } from "./data.js";
|
|
15
|
+
import { getBuildTimeHeader } from "./dev.js";
|
|
16
|
+
//#region lib/server-runtime/routes.ts
|
|
17
|
+
function groupRoutesByParentId(manifest) {
|
|
18
|
+
let routes = {};
|
|
19
|
+
Object.values(manifest).forEach((route) => {
|
|
20
|
+
if (route) {
|
|
21
|
+
let parentId = route.parentId || "";
|
|
22
|
+
if (!routes[parentId]) routes[parentId] = [];
|
|
23
|
+
routes[parentId].push(route);
|
|
24
|
+
}
|
|
25
|
+
});
|
|
26
|
+
return routes;
|
|
27
|
+
}
|
|
28
|
+
function createStaticHandlerDataRoutes(manifest, parentId = "", routesByParentId = groupRoutesByParentId(manifest)) {
|
|
29
|
+
return (routesByParentId[parentId] || []).map((route) => {
|
|
30
|
+
let commonRoute = {
|
|
31
|
+
id: route.id,
|
|
32
|
+
path: route.path,
|
|
33
|
+
middleware: route.module.middleware,
|
|
34
|
+
loader: route.module.loader ? async (args) => {
|
|
35
|
+
let preRenderedData = getBuildTimeHeader(args.request, "X-React-Router-Prerender-Data");
|
|
36
|
+
if (preRenderedData != null) {
|
|
37
|
+
let encoded = preRenderedData ? decodeURI(preRenderedData) : preRenderedData;
|
|
38
|
+
invariant(encoded, "Missing prerendered data for route");
|
|
39
|
+
let uint8array = new TextEncoder().encode(encoded);
|
|
40
|
+
let data = (await decodeViaTurboStream(new ReadableStream({ start(controller) {
|
|
41
|
+
controller.enqueue(uint8array);
|
|
42
|
+
controller.close();
|
|
43
|
+
} }), global)).value;
|
|
44
|
+
if (data && SingleFetchRedirectSymbol in data) {
|
|
45
|
+
let result = data[SingleFetchRedirectSymbol];
|
|
46
|
+
let init = { status: result.status };
|
|
47
|
+
if (result.reload) throw redirectDocument(result.redirect, init);
|
|
48
|
+
else if (result.replace) throw replace(result.redirect, init);
|
|
49
|
+
else throw redirect(result.redirect, init);
|
|
50
|
+
} else {
|
|
51
|
+
invariant(data && route.id in data, "Unable to decode prerendered data");
|
|
52
|
+
let result = data[route.id];
|
|
53
|
+
invariant("data" in result, "Unable to process prerendered data");
|
|
54
|
+
return result.data;
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
return await callRouteHandler(route.module.loader, args);
|
|
58
|
+
} : void 0,
|
|
59
|
+
action: route.module.action ? (args) => callRouteHandler(route.module.action, args) : void 0,
|
|
60
|
+
ErrorBoundary: route.id === "root" || route.module.ErrorBoundary != null ? () => null : void 0,
|
|
61
|
+
handle: route.module.handle
|
|
62
|
+
};
|
|
63
|
+
return route.index ? {
|
|
64
|
+
index: true,
|
|
65
|
+
...commonRoute
|
|
66
|
+
} : {
|
|
67
|
+
caseSensitive: route.caseSensitive,
|
|
68
|
+
children: createStaticHandlerDataRoutes(manifest, route.id, routesByParentId),
|
|
69
|
+
...commonRoute
|
|
70
|
+
};
|
|
71
|
+
});
|
|
72
|
+
}
|
|
73
|
+
//#endregion
|
|
74
|
+
export { createStaticHandlerDataRoutes };
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
|
|
2
|
+
import { RouterContextProvider } from "../router/utils.js";
|
|
3
|
+
import { ServerBuild } from "./build.js";
|
|
4
|
+
|
|
5
|
+
//#region lib/server-runtime/server.d.ts
|
|
6
|
+
type RequestHandler = (request: Request, loadContext?: RouterContextProvider) => Promise<Response>;
|
|
7
|
+
type CreateRequestHandlerFunction = (build: ServerBuild | (() => ServerBuild | Promise<ServerBuild>), mode?: string) => RequestHandler;
|
|
8
|
+
declare const createRequestHandler: CreateRequestHandlerFunction;
|
|
9
|
+
//#endregion
|
|
10
|
+
export { CreateRequestHandlerFunction, RequestHandler, createRequestHandler };
|