@vercel/routing-utils 3.1.0 → 5.0.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.
Files changed (2) hide show
  1. package/dist/index.d.ts +1 -1
  2. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -5,7 +5,7 @@ export * from './schemas';
5
5
  export { getCleanUrls } from './superstatic';
6
6
  export * from './types';
7
7
  declare const VALID_HANDLE_VALUES: readonly ["filesystem", "hit", "miss", "rewrite", "error", "resource"];
8
- export type HandleValue = typeof VALID_HANDLE_VALUES[number];
8
+ export type HandleValue = (typeof VALID_HANDLE_VALUES)[number];
9
9
  export declare function isHandler(route: Route): route is RouteWithHandle;
10
10
  export declare function isValidHandleValue(handle: string): handle is HandleValue;
11
11
  export declare function normalizeRoutes(inputRoutes: Route[] | null): NormalizedRoutes;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vercel/routing-utils",
3
- "version": "3.1.0",
3
+ "version": "5.0.0",
4
4
  "description": "Vercel routing utilities",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",