@tanstack/router-core 0.0.1-beta.169 → 0.0.1-beta.170
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/build/cjs/route.js.map +1 -1
- package/build/esm/index.js.map +1 -1
- package/build/stats-html.html +1 -1
- package/build/stats-react.json +128 -128
- package/build/types/index.d.ts +1 -1
- package/build/umd/index.development.js.map +1 -1
- package/build/umd/index.production.js.map +1 -1
- package/package.json +2 -2
- package/src/route.ts +2 -2
package/build/types/index.d.ts
CHANGED
|
@@ -588,7 +588,7 @@ declare class Route<TParentRoute extends RouteConstraints['TParentRoute'] = AnyR
|
|
|
588
588
|
}) => void;
|
|
589
589
|
addChildren: <TNewChildren extends AnyRoute[]>(children: TNewChildren) => Route<TParentRoute, TPath, TFullPath, TCustomId, TId, TLoader, TSearchSchema, TFullSearchSchema, TParams, TAllParams, TParentContext, TAllParentContext, TRouteContext, TAllContext, TRouterContext, TNewChildren, TRouteTree>;
|
|
590
590
|
update: (options: UpdatableRouteOptions<TLoader, TSearchSchema, TFullSearchSchema, TAllParams, TRouteContext, TAllContext>) => this;
|
|
591
|
-
static __onInit: (route:
|
|
591
|
+
static __onInit: (route: any) => void;
|
|
592
592
|
}
|
|
593
593
|
type AnyRootRoute = RootRoute<any, any, any, any>;
|
|
594
594
|
declare class RouterContext<TRouterContext extends {}> {
|