Interface RoutePathInterface

interface RoutePathInterface {
    completePath: string;
    namedParams: RoutePathNamedParams;
    path: string;
    regExp: RegExp;
}

Hierarchy (view full)

Properties

completePath: string
namedParams: RoutePathNamedParams
path: string
regExp: RegExp