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