Interface RouteMatch<Locales, RouteRef>

interface RouteMatch<Locales, RouteRef> {
    namedParams: undefined | Map<string, string>;
    otherParams: undefined | string[];
    path: string;
    ref: RouteRef;
    route: Route<any, Locales, RouteRef>;
    routePath: RoutePathInterface | EndRoutePath;
}

Type Parameters

Properties

namedParams: undefined | Map<string, string>
otherParams: undefined | string[]
path: string
route: Route<any, Locales, RouteRef>