@vercel/routing-utils 6.0.1 → 6.0.2
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/types.d.ts +1 -1
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -108,7 +108,7 @@ export type RouteWithHandle = {
|
|
|
108
108
|
};
|
|
109
109
|
export type Route = RouteWithSrc | RouteWithHandle;
|
|
110
110
|
export type RouteInput = RouteWithSrc | (Omit<RouteWithSrc, 'src'> & {
|
|
111
|
-
src?:
|
|
111
|
+
src?: string;
|
|
112
112
|
source: string;
|
|
113
113
|
}) | RouteWithHandle;
|
|
114
114
|
export type NormalizedRoutes = {
|