UNPKG

@wroud/navigation

Version:

A flexible, pattern-matching navigation system for JavaScript applications with built-in routing, browser integration, and navigation state management

8 lines (7 loc) 162 B
/** * Represents the state of a route with its ID and parameters */ export interface IRouteState { id: string; params: Record<string, string | string[]>; }