Interface EndRoutePath

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

Hierarchy (View Summary)

Properties

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