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 207 B
/** * Represents the state of a route with its ID and parameters */ export interface IRouteState { id: string; params: Record<string, string | string[]>; } //# sourceMappingURL=IRouteState.d.ts.map