Interface EndRoutePath

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

Hierarchy (view full)

Properties

completePath: string
namedParams: RoutePathNamedParams
path: string
regExp: RegExp
toPath: ((args?) => string)

Type declaration

    • (args?): string
    • Parameters

      • Optional args: Record<string, any>

      Returns string