Interface EndRoutePath

interface EndRoutePath {
    completePath: string;
    namedParams: RoutePathNamedParams;
    path: string;
    regExp: RegExp;
    toPath: ((args?: Record<string, any>) => string);
}

Hierarchy (view full)

Properties

completePath: string
namedParams: RoutePathNamedParams
path: string
regExp: RegExp
toPath: ((args?: Record<string, any>) => string)