Interface EndRoute<Locales, RouteRef>

interface EndRoute<Locales extends LocaleType, RouteRef> {
    getPath: (locale?: Locales) => EndRoutePath;
    isLocalized: () => boolean;
    isSegment: () => false;
    ref: RouteRef;
    toJSON: () => any;
    toString: () => string;
}

Type Parameters

Hierarchy (View Summary)

Properties

getPath: (locale?: Locales) => EndRoutePath
isLocalized: () => boolean
isSegment: () => false
toJSON: () => any
toString: () => string