@tempots/ui
RouteInfo type
Represents information about a route.
Signature:
export type RouteInfo<P, R = string> = {
readonly params: P;
readonly route: R;
readonly path: string;
readonly search: Record<string, string>;
readonly hash?: string;
};