Interface EndRoute<Locales, RouteRef>

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

Type Parameters

Hierarchy (view full)

Properties

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