Plumile JS API
    Preparing search index...

    Type Alias NavigateInputForPath<Routes>

    Input shape for a navigation to a specific path (typed query)

    type NavigateInputForPath<Routes extends readonly unknown[]> = {
        filters?: FiltersOf<RouteUnion<Routes>>;
        pathname: PathsOf<Routes>;
        query?: QueryShapeOf<RouteUnion<Routes>>;
        replace?: boolean;
    }

    Type Parameters

    • Routes extends readonly unknown[]
    Index

    Properties

    pathname: PathsOf<Routes>
    replace?: boolean