@real-router/types 0.9.0 → 0.10.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.
@@ -513,15 +513,6 @@ interface Router {
513
513
  * @returns true if navigation is allowed, false otherwise
514
514
  */
515
515
  canNavigateTo: (name: string, params?: Params) => boolean;
516
- /**
517
- * Get a minimal, safe Navigator interface for passing to components.
518
- *
519
- * The returned Navigator object is frozen and includes only essential methods:
520
- * navigate, getState, isActiveRoute, canNavigateTo, subscribe.
521
- *
522
- * @returns Frozen Navigator object
523
- */
524
- getNavigator: () => Navigator;
525
516
  }
526
517
 
527
518
  /**
@@ -513,15 +513,6 @@ interface Router {
513
513
  * @returns true if navigation is allowed, false otherwise
514
514
  */
515
515
  canNavigateTo: (name: string, params?: Params) => boolean;
516
- /**
517
- * Get a minimal, safe Navigator interface for passing to components.
518
- *
519
- * The returned Navigator object is frozen and includes only essential methods:
520
- * navigate, getState, isActiveRoute, canNavigateTo, subscribe.
521
- *
522
- * @returns Frozen Navigator object
523
- */
524
- getNavigator: () => Navigator;
525
516
  }
526
517
 
527
518
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@real-router/types",
3
- "version": "0.9.0",
3
+ "version": "0.10.0",
4
4
  "type": "commonjs",
5
5
  "description": "Shared TypeScript types for Real Router ecosystem",
6
6
  "types": "./dist/esm/index.d.mts",