Interface NotLocalizedRoute<T, Locales, RouteRef>

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

Type Parameters

Hierarchy (View Summary)

Properties

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