@kitbag/router 0.15.1 → 0.15.3

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.
@@ -516,16 +516,6 @@ export declare class MetaPropertyConflict extends Error {
516
516
  constructor(property?: string);
517
517
  }
518
518
 
519
- /**
520
- * Registers a hook that is called after a route has been entered. Must be called during setup.
521
- * This allows performing actions right after the component becomes active, such as fetching data or setting up event listeners.
522
- *
523
- * @param AfterRouteHook - The hook callback function
524
- * @returns {RouteHookRemove} A function that removes the added hook.
525
- * @group Hooks
526
- */
527
- export declare const onAfterRouteEnter: AddAfterRouteHook;
528
-
529
519
  /**
530
520
  * Registers a hook that is called after a route has been left. Must be called during setup.
531
521
  * This can be used for cleanup actions after the component is no longer active, ensuring proper resource management.