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)

Type declaration

    • (): T
    • Returns T

isLocalized: (() => false)

Type declaration

    • (): false
    • Returns false

isSegment: (() => boolean)

Type declaration

    • (): boolean
    • Returns boolean

toJSON: (() => any)

Type declaration

    • (): any
    • Returns any

toString: (() => string)

Type declaration

    • (): string
    • Returns string