react-router 0.0.0-experimental-d499f664f → 0.0.0-experimental-98c0b596f
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/dist/development/{chunk-5W3RZ7AM.mjs → chunk-OFYZDXTO.mjs} +14 -4
- package/dist/development/dom-export.js +13 -3
- package/dist/development/dom-export.mjs +2 -2
- package/dist/development/index.js +14 -4
- package/dist/development/index.mjs +2 -2
- package/dist/development/lib/types/route-module.d.mts +1 -1
- package/dist/development/lib/types/route-module.d.ts +1 -1
- package/dist/development/lib/types/route-module.js +1 -1
- package/dist/development/lib/types/route-module.mjs +1 -1
- package/dist/production/{chunk-QVSULLVR.mjs → chunk-M7KGQ735.mjs} +14 -4
- package/dist/production/dom-export.js +13 -3
- package/dist/production/dom-export.mjs +2 -2
- package/dist/production/index.js +14 -4
- package/dist/production/index.mjs +2 -2
- package/dist/production/lib/types/route-module.d.mts +1 -1
- package/dist/production/lib/types/route-module.d.ts +1 -1
- package/dist/production/lib/types/route-module.js +1 -1
- package/dist/production/lib/types/route-module.mjs +1 -1
- package/package.json +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* react-router v0.0.0-experimental-
|
|
2
|
+
* react-router v0.0.0-experimental-98c0b596f
|
|
3
3
|
*
|
|
4
4
|
* Copyright (c) Remix Software Inc.
|
|
5
5
|
*
|
|
@@ -3650,6 +3650,7 @@ async function callRouteMiddleware(middlewares, idx, args, middlewareState, hand
|
|
|
3650
3650
|
}
|
|
3651
3651
|
let [routeId, middleware] = tuple;
|
|
3652
3652
|
let nextCalled = false;
|
|
3653
|
+
let nextResult = void 0;
|
|
3653
3654
|
let next = async () => {
|
|
3654
3655
|
if (nextCalled) {
|
|
3655
3656
|
throw new Error("You may only call `next()` once per middleware");
|
|
@@ -3663,7 +3664,8 @@ async function callRouteMiddleware(middlewares, idx, args, middlewareState, hand
|
|
|
3663
3664
|
handler
|
|
3664
3665
|
);
|
|
3665
3666
|
if (middlewareState.propagateResult) {
|
|
3666
|
-
|
|
3667
|
+
nextResult = result;
|
|
3668
|
+
return nextResult;
|
|
3667
3669
|
}
|
|
3668
3670
|
};
|
|
3669
3671
|
try {
|
|
@@ -3675,7 +3677,15 @@ async function callRouteMiddleware(middlewares, idx, args, middlewareState, hand
|
|
|
3675
3677
|
},
|
|
3676
3678
|
next
|
|
3677
3679
|
);
|
|
3678
|
-
|
|
3680
|
+
if (nextCalled) {
|
|
3681
|
+
if (result === void 0) {
|
|
3682
|
+
return nextResult;
|
|
3683
|
+
} else {
|
|
3684
|
+
return result;
|
|
3685
|
+
}
|
|
3686
|
+
} else {
|
|
3687
|
+
return next();
|
|
3688
|
+
}
|
|
3679
3689
|
} catch (e) {
|
|
3680
3690
|
if (e instanceof MiddlewareError) {
|
|
3681
3691
|
throw e;
|
|
@@ -7578,7 +7588,7 @@ function mergeRefs(...refs) {
|
|
|
7578
7588
|
var isBrowser = typeof window !== "undefined" && typeof window.document !== "undefined" && typeof window.document.createElement !== "undefined";
|
|
7579
7589
|
try {
|
|
7580
7590
|
if (isBrowser) {
|
|
7581
|
-
window.__reactRouterVersion = "0.0.0-experimental-
|
|
7591
|
+
window.__reactRouterVersion = "0.0.0-experimental-98c0b596f";
|
|
7582
7592
|
}
|
|
7583
7593
|
} catch (e) {
|
|
7584
7594
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* react-router v0.0.0-experimental-
|
|
2
|
+
* react-router v0.0.0-experimental-98c0b596f
|
|
3
3
|
*
|
|
4
4
|
* Copyright (c) Remix Software Inc.
|
|
5
5
|
*
|
|
@@ -2942,6 +2942,7 @@ async function callRouteMiddleware(middlewares, idx, args, middlewareState, hand
|
|
|
2942
2942
|
}
|
|
2943
2943
|
let [routeId, middleware] = tuple;
|
|
2944
2944
|
let nextCalled = false;
|
|
2945
|
+
let nextResult = void 0;
|
|
2945
2946
|
let next = async () => {
|
|
2946
2947
|
if (nextCalled) {
|
|
2947
2948
|
throw new Error("You may only call `next()` once per middleware");
|
|
@@ -2955,7 +2956,8 @@ async function callRouteMiddleware(middlewares, idx, args, middlewareState, hand
|
|
|
2955
2956
|
handler
|
|
2956
2957
|
);
|
|
2957
2958
|
if (middlewareState.propagateResult) {
|
|
2958
|
-
|
|
2959
|
+
nextResult = result;
|
|
2960
|
+
return nextResult;
|
|
2959
2961
|
}
|
|
2960
2962
|
};
|
|
2961
2963
|
try {
|
|
@@ -2967,7 +2969,15 @@ async function callRouteMiddleware(middlewares, idx, args, middlewareState, hand
|
|
|
2967
2969
|
},
|
|
2968
2970
|
next
|
|
2969
2971
|
);
|
|
2970
|
-
|
|
2972
|
+
if (nextCalled) {
|
|
2973
|
+
if (result === void 0) {
|
|
2974
|
+
return nextResult;
|
|
2975
|
+
} else {
|
|
2976
|
+
return result;
|
|
2977
|
+
}
|
|
2978
|
+
} else {
|
|
2979
|
+
return next();
|
|
2980
|
+
}
|
|
2971
2981
|
} catch (e) {
|
|
2972
2982
|
if (e instanceof MiddlewareError) {
|
|
2973
2983
|
throw e;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* react-router v0.0.0-experimental-
|
|
2
|
+
* react-router v0.0.0-experimental-98c0b596f
|
|
3
3
|
*
|
|
4
4
|
* Copyright (c) Remix Software Inc.
|
|
5
5
|
*
|
|
@@ -25,7 +25,7 @@ import {
|
|
|
25
25
|
matchRoutes,
|
|
26
26
|
shouldHydrateRouteLoader,
|
|
27
27
|
useFogOFWarDiscovery
|
|
28
|
-
} from "./chunk-
|
|
28
|
+
} from "./chunk-OFYZDXTO.mjs";
|
|
29
29
|
|
|
30
30
|
// lib/dom-export/dom-router-provider.tsx
|
|
31
31
|
import * as React from "react";
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* react-router v0.0.0-experimental-
|
|
2
|
+
* react-router v0.0.0-experimental-98c0b596f
|
|
3
3
|
*
|
|
4
4
|
* Copyright (c) Remix Software Inc.
|
|
5
5
|
*
|
|
@@ -3798,6 +3798,7 @@ async function callRouteMiddleware(middlewares, idx, args, middlewareState, hand
|
|
|
3798
3798
|
}
|
|
3799
3799
|
let [routeId, middleware] = tuple;
|
|
3800
3800
|
let nextCalled = false;
|
|
3801
|
+
let nextResult = void 0;
|
|
3801
3802
|
let next = async () => {
|
|
3802
3803
|
if (nextCalled) {
|
|
3803
3804
|
throw new Error("You may only call `next()` once per middleware");
|
|
@@ -3811,7 +3812,8 @@ async function callRouteMiddleware(middlewares, idx, args, middlewareState, hand
|
|
|
3811
3812
|
handler
|
|
3812
3813
|
);
|
|
3813
3814
|
if (middlewareState.propagateResult) {
|
|
3814
|
-
|
|
3815
|
+
nextResult = result;
|
|
3816
|
+
return nextResult;
|
|
3815
3817
|
}
|
|
3816
3818
|
};
|
|
3817
3819
|
try {
|
|
@@ -3823,7 +3825,15 @@ async function callRouteMiddleware(middlewares, idx, args, middlewareState, hand
|
|
|
3823
3825
|
},
|
|
3824
3826
|
next
|
|
3825
3827
|
);
|
|
3826
|
-
|
|
3828
|
+
if (nextCalled) {
|
|
3829
|
+
if (result === void 0) {
|
|
3830
|
+
return nextResult;
|
|
3831
|
+
} else {
|
|
3832
|
+
return result;
|
|
3833
|
+
}
|
|
3834
|
+
} else {
|
|
3835
|
+
return next();
|
|
3836
|
+
}
|
|
3827
3837
|
} catch (e) {
|
|
3828
3838
|
if (e instanceof MiddlewareError) {
|
|
3829
3839
|
throw e;
|
|
@@ -7726,7 +7736,7 @@ function mergeRefs(...refs) {
|
|
|
7726
7736
|
var isBrowser = typeof window !== "undefined" && typeof window.document !== "undefined" && typeof window.document.createElement !== "undefined";
|
|
7727
7737
|
try {
|
|
7728
7738
|
if (isBrowser) {
|
|
7729
|
-
window.__reactRouterVersion = "0.0.0-experimental-
|
|
7739
|
+
window.__reactRouterVersion = "0.0.0-experimental-98c0b596f";
|
|
7730
7740
|
}
|
|
7731
7741
|
} catch (e) {
|
|
7732
7742
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* react-router v0.0.0-experimental-
|
|
2
|
+
* react-router v0.0.0-experimental-98c0b596f
|
|
3
3
|
*
|
|
4
4
|
* Copyright (c) Remix Software Inc.
|
|
5
5
|
*
|
|
@@ -123,7 +123,7 @@ import {
|
|
|
123
123
|
useSearchParams,
|
|
124
124
|
useSubmit,
|
|
125
125
|
useViewTransitionState
|
|
126
|
-
} from "./chunk-
|
|
126
|
+
} from "./chunk-OFYZDXTO.mjs";
|
|
127
127
|
export {
|
|
128
128
|
Await,
|
|
129
129
|
BrowserRouter,
|
|
@@ -138,7 +138,7 @@ type ServerDataFunctionArgs<T extends RouteInfo> = {
|
|
|
138
138
|
*/
|
|
139
139
|
context: MiddlewareEnabled extends true ? unstable_RouterContextProvider : AppLoadContext;
|
|
140
140
|
};
|
|
141
|
-
type CreateServerMiddlewareFunction<T extends RouteInfo> = (args: ServerDataFunctionArgs<T>, next: unstable_MiddlewareNextFunction<Response>) => MaybePromise<Response>;
|
|
141
|
+
type CreateServerMiddlewareFunction<T extends RouteInfo> = (args: ServerDataFunctionArgs<T>, next: unstable_MiddlewareNextFunction<Response>) => MaybePromise<Response | void>;
|
|
142
142
|
type CreateClientMiddlewareFunction<T extends RouteInfo> = (args: ClientDataFunctionArgs<T>, next: unstable_MiddlewareNextFunction<undefined>) => MaybePromise<undefined>;
|
|
143
143
|
type CreateServerLoaderArgs<T extends RouteInfo> = ServerDataFunctionArgs<T>;
|
|
144
144
|
type CreateClientLoaderArgs<T extends RouteInfo> = ClientDataFunctionArgs<T> & {
|
|
@@ -138,7 +138,7 @@ type ServerDataFunctionArgs<T extends RouteInfo> = {
|
|
|
138
138
|
*/
|
|
139
139
|
context: MiddlewareEnabled extends true ? unstable_RouterContextProvider : AppLoadContext;
|
|
140
140
|
};
|
|
141
|
-
type CreateServerMiddlewareFunction<T extends RouteInfo> = (args: ServerDataFunctionArgs<T>, next: unstable_MiddlewareNextFunction<Response>) => MaybePromise<Response>;
|
|
141
|
+
type CreateServerMiddlewareFunction<T extends RouteInfo> = (args: ServerDataFunctionArgs<T>, next: unstable_MiddlewareNextFunction<Response>) => MaybePromise<Response | void>;
|
|
142
142
|
type CreateClientMiddlewareFunction<T extends RouteInfo> = (args: ClientDataFunctionArgs<T>, next: unstable_MiddlewareNextFunction<undefined>) => MaybePromise<undefined>;
|
|
143
143
|
type CreateServerLoaderArgs<T extends RouteInfo> = ServerDataFunctionArgs<T>;
|
|
144
144
|
type CreateClientLoaderArgs<T extends RouteInfo> = ClientDataFunctionArgs<T> & {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* react-router v0.0.0-experimental-
|
|
2
|
+
* react-router v0.0.0-experimental-98c0b596f
|
|
3
3
|
*
|
|
4
4
|
* Copyright (c) Remix Software Inc.
|
|
5
5
|
*
|
|
@@ -3650,6 +3650,7 @@ async function callRouteMiddleware(middlewares, idx, args, middlewareState, hand
|
|
|
3650
3650
|
}
|
|
3651
3651
|
let [routeId, middleware] = tuple;
|
|
3652
3652
|
let nextCalled = false;
|
|
3653
|
+
let nextResult = void 0;
|
|
3653
3654
|
let next = async () => {
|
|
3654
3655
|
if (nextCalled) {
|
|
3655
3656
|
throw new Error("You may only call `next()` once per middleware");
|
|
@@ -3663,7 +3664,8 @@ async function callRouteMiddleware(middlewares, idx, args, middlewareState, hand
|
|
|
3663
3664
|
handler
|
|
3664
3665
|
);
|
|
3665
3666
|
if (middlewareState.propagateResult) {
|
|
3666
|
-
|
|
3667
|
+
nextResult = result;
|
|
3668
|
+
return nextResult;
|
|
3667
3669
|
}
|
|
3668
3670
|
};
|
|
3669
3671
|
try {
|
|
@@ -3675,7 +3677,15 @@ async function callRouteMiddleware(middlewares, idx, args, middlewareState, hand
|
|
|
3675
3677
|
},
|
|
3676
3678
|
next
|
|
3677
3679
|
);
|
|
3678
|
-
|
|
3680
|
+
if (nextCalled) {
|
|
3681
|
+
if (result === void 0) {
|
|
3682
|
+
return nextResult;
|
|
3683
|
+
} else {
|
|
3684
|
+
return result;
|
|
3685
|
+
}
|
|
3686
|
+
} else {
|
|
3687
|
+
return next();
|
|
3688
|
+
}
|
|
3679
3689
|
} catch (e) {
|
|
3680
3690
|
if (e instanceof MiddlewareError) {
|
|
3681
3691
|
throw e;
|
|
@@ -7578,7 +7588,7 @@ function mergeRefs(...refs) {
|
|
|
7578
7588
|
var isBrowser = typeof window !== "undefined" && typeof window.document !== "undefined" && typeof window.document.createElement !== "undefined";
|
|
7579
7589
|
try {
|
|
7580
7590
|
if (isBrowser) {
|
|
7581
|
-
window.__reactRouterVersion = "0.0.0-experimental-
|
|
7591
|
+
window.__reactRouterVersion = "0.0.0-experimental-98c0b596f";
|
|
7582
7592
|
}
|
|
7583
7593
|
} catch (e) {
|
|
7584
7594
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* react-router v0.0.0-experimental-
|
|
2
|
+
* react-router v0.0.0-experimental-98c0b596f
|
|
3
3
|
*
|
|
4
4
|
* Copyright (c) Remix Software Inc.
|
|
5
5
|
*
|
|
@@ -2942,6 +2942,7 @@ async function callRouteMiddleware(middlewares, idx, args, middlewareState, hand
|
|
|
2942
2942
|
}
|
|
2943
2943
|
let [routeId, middleware] = tuple;
|
|
2944
2944
|
let nextCalled = false;
|
|
2945
|
+
let nextResult = void 0;
|
|
2945
2946
|
let next = async () => {
|
|
2946
2947
|
if (nextCalled) {
|
|
2947
2948
|
throw new Error("You may only call `next()` once per middleware");
|
|
@@ -2955,7 +2956,8 @@ async function callRouteMiddleware(middlewares, idx, args, middlewareState, hand
|
|
|
2955
2956
|
handler
|
|
2956
2957
|
);
|
|
2957
2958
|
if (middlewareState.propagateResult) {
|
|
2958
|
-
|
|
2959
|
+
nextResult = result;
|
|
2960
|
+
return nextResult;
|
|
2959
2961
|
}
|
|
2960
2962
|
};
|
|
2961
2963
|
try {
|
|
@@ -2967,7 +2969,15 @@ async function callRouteMiddleware(middlewares, idx, args, middlewareState, hand
|
|
|
2967
2969
|
},
|
|
2968
2970
|
next
|
|
2969
2971
|
);
|
|
2970
|
-
|
|
2972
|
+
if (nextCalled) {
|
|
2973
|
+
if (result === void 0) {
|
|
2974
|
+
return nextResult;
|
|
2975
|
+
} else {
|
|
2976
|
+
return result;
|
|
2977
|
+
}
|
|
2978
|
+
} else {
|
|
2979
|
+
return next();
|
|
2980
|
+
}
|
|
2971
2981
|
} catch (e) {
|
|
2972
2982
|
if (e instanceof MiddlewareError) {
|
|
2973
2983
|
throw e;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* react-router v0.0.0-experimental-
|
|
2
|
+
* react-router v0.0.0-experimental-98c0b596f
|
|
3
3
|
*
|
|
4
4
|
* Copyright (c) Remix Software Inc.
|
|
5
5
|
*
|
|
@@ -25,7 +25,7 @@ import {
|
|
|
25
25
|
matchRoutes,
|
|
26
26
|
shouldHydrateRouteLoader,
|
|
27
27
|
useFogOFWarDiscovery
|
|
28
|
-
} from "./chunk-
|
|
28
|
+
} from "./chunk-M7KGQ735.mjs";
|
|
29
29
|
|
|
30
30
|
// lib/dom-export/dom-router-provider.tsx
|
|
31
31
|
import * as React from "react";
|
package/dist/production/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* react-router v0.0.0-experimental-
|
|
2
|
+
* react-router v0.0.0-experimental-98c0b596f
|
|
3
3
|
*
|
|
4
4
|
* Copyright (c) Remix Software Inc.
|
|
5
5
|
*
|
|
@@ -3798,6 +3798,7 @@ async function callRouteMiddleware(middlewares, idx, args, middlewareState, hand
|
|
|
3798
3798
|
}
|
|
3799
3799
|
let [routeId, middleware] = tuple;
|
|
3800
3800
|
let nextCalled = false;
|
|
3801
|
+
let nextResult = void 0;
|
|
3801
3802
|
let next = async () => {
|
|
3802
3803
|
if (nextCalled) {
|
|
3803
3804
|
throw new Error("You may only call `next()` once per middleware");
|
|
@@ -3811,7 +3812,8 @@ async function callRouteMiddleware(middlewares, idx, args, middlewareState, hand
|
|
|
3811
3812
|
handler
|
|
3812
3813
|
);
|
|
3813
3814
|
if (middlewareState.propagateResult) {
|
|
3814
|
-
|
|
3815
|
+
nextResult = result;
|
|
3816
|
+
return nextResult;
|
|
3815
3817
|
}
|
|
3816
3818
|
};
|
|
3817
3819
|
try {
|
|
@@ -3823,7 +3825,15 @@ async function callRouteMiddleware(middlewares, idx, args, middlewareState, hand
|
|
|
3823
3825
|
},
|
|
3824
3826
|
next
|
|
3825
3827
|
);
|
|
3826
|
-
|
|
3828
|
+
if (nextCalled) {
|
|
3829
|
+
if (result === void 0) {
|
|
3830
|
+
return nextResult;
|
|
3831
|
+
} else {
|
|
3832
|
+
return result;
|
|
3833
|
+
}
|
|
3834
|
+
} else {
|
|
3835
|
+
return next();
|
|
3836
|
+
}
|
|
3827
3837
|
} catch (e) {
|
|
3828
3838
|
if (e instanceof MiddlewareError) {
|
|
3829
3839
|
throw e;
|
|
@@ -7726,7 +7736,7 @@ function mergeRefs(...refs) {
|
|
|
7726
7736
|
var isBrowser = typeof window !== "undefined" && typeof window.document !== "undefined" && typeof window.document.createElement !== "undefined";
|
|
7727
7737
|
try {
|
|
7728
7738
|
if (isBrowser) {
|
|
7729
|
-
window.__reactRouterVersion = "0.0.0-experimental-
|
|
7739
|
+
window.__reactRouterVersion = "0.0.0-experimental-98c0b596f";
|
|
7730
7740
|
}
|
|
7731
7741
|
} catch (e) {
|
|
7732
7742
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* react-router v0.0.0-experimental-
|
|
2
|
+
* react-router v0.0.0-experimental-98c0b596f
|
|
3
3
|
*
|
|
4
4
|
* Copyright (c) Remix Software Inc.
|
|
5
5
|
*
|
|
@@ -123,7 +123,7 @@ import {
|
|
|
123
123
|
useSearchParams,
|
|
124
124
|
useSubmit,
|
|
125
125
|
useViewTransitionState
|
|
126
|
-
} from "./chunk-
|
|
126
|
+
} from "./chunk-M7KGQ735.mjs";
|
|
127
127
|
export {
|
|
128
128
|
Await,
|
|
129
129
|
BrowserRouter,
|
|
@@ -138,7 +138,7 @@ type ServerDataFunctionArgs<T extends RouteInfo> = {
|
|
|
138
138
|
*/
|
|
139
139
|
context: MiddlewareEnabled extends true ? unstable_RouterContextProvider : AppLoadContext;
|
|
140
140
|
};
|
|
141
|
-
type CreateServerMiddlewareFunction<T extends RouteInfo> = (args: ServerDataFunctionArgs<T>, next: unstable_MiddlewareNextFunction<Response>) => MaybePromise<Response>;
|
|
141
|
+
type CreateServerMiddlewareFunction<T extends RouteInfo> = (args: ServerDataFunctionArgs<T>, next: unstable_MiddlewareNextFunction<Response>) => MaybePromise<Response | void>;
|
|
142
142
|
type CreateClientMiddlewareFunction<T extends RouteInfo> = (args: ClientDataFunctionArgs<T>, next: unstable_MiddlewareNextFunction<undefined>) => MaybePromise<undefined>;
|
|
143
143
|
type CreateServerLoaderArgs<T extends RouteInfo> = ServerDataFunctionArgs<T>;
|
|
144
144
|
type CreateClientLoaderArgs<T extends RouteInfo> = ClientDataFunctionArgs<T> & {
|
|
@@ -138,7 +138,7 @@ type ServerDataFunctionArgs<T extends RouteInfo> = {
|
|
|
138
138
|
*/
|
|
139
139
|
context: MiddlewareEnabled extends true ? unstable_RouterContextProvider : AppLoadContext;
|
|
140
140
|
};
|
|
141
|
-
type CreateServerMiddlewareFunction<T extends RouteInfo> = (args: ServerDataFunctionArgs<T>, next: unstable_MiddlewareNextFunction<Response>) => MaybePromise<Response>;
|
|
141
|
+
type CreateServerMiddlewareFunction<T extends RouteInfo> = (args: ServerDataFunctionArgs<T>, next: unstable_MiddlewareNextFunction<Response>) => MaybePromise<Response | void>;
|
|
142
142
|
type CreateClientMiddlewareFunction<T extends RouteInfo> = (args: ClientDataFunctionArgs<T>, next: unstable_MiddlewareNextFunction<undefined>) => MaybePromise<undefined>;
|
|
143
143
|
type CreateServerLoaderArgs<T extends RouteInfo> = ServerDataFunctionArgs<T>;
|
|
144
144
|
type CreateClientLoaderArgs<T extends RouteInfo> = ClientDataFunctionArgs<T> & {
|