Rezi
    Preparing search index...

    Type Alias RouteRenderContext<S>

    RouteRenderContext: Readonly<
        {
            outlet: VNode
            | null;
            router: RouterApi;
            state: Readonly<S>;
            update: (updater: S | ((prev: Readonly<S>) => S)) => void;
        },
    >

    Context passed to route screen render functions.

    A route screen can ignore this context and use only params, or use it to read state, schedule updates, and navigate.

    Type Parameters

    • S