solid-navigator 0.3.1 → 0.3.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.
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 @@ interface RouteObject {
5
5
  path: string;
6
6
  children?: RouteObject[];
7
7
  component?: () => JSX.Element;
8
- components?: Record<string, () => JSX.Element | undefined>;
8
+ components?: Record<string, (() => JSX.Element) | undefined>;
9
9
  }
10
10
  declare const Route: (props: Omit<RouteObject, 'children'> & {
11
11
  children?: JSX.Element;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "solid-navigator",
3
- "version": "0.3.1",
3
+ "version": "0.3.2",
4
4
  "description": "Solid Navigator is a library that is inspired by vue router and solid router.",
5
5
  "license": "MIT",
6
6
  "author": "SupertigerDev",