router-segments
    Preparing search index...

    Interface Route<T, Locales, RouteRef>

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

    Type Parameters

    Hierarchy (View Summary)

    Index

    Properties

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