Interface NotLocalizedRoute<T, Locales, RouteRef>

interface NotLocalizedRoute<T, Locales, RouteRef> {
    getPath: (() => T);
    isLocalized: (() => false);
    isSegment: (() => boolean);
    toJSON: (() => any);
    toString: (() => string);
}

Type Parameters

Hierarchy (view full)

Properties

getPath: (() => T)
isLocalized: (() => false)
isSegment: (() => boolean)
toJSON: (() => any)
toString: (() => string)