UNPKG

@muryp/router-dom

Version:
11 lines (10 loc) 397 B
import { TMurypRoutes, TMurypRouteConfig } from '../types/global'; export declare function matchRouteLogic(segments: string[], routes: TMurypRoutes): { configs: TMurypRouteConfig[]; params: Record<string, string>; }; export declare function parseUrlLogic(fullUrl: string, hash: string, rootUrl?: string): { segments: string[]; query: Record<string, string>; anchor: string; };