API Reference
    Preparing search index...

    Environment configuration for the Router.

    Use this to define the shape of your request-scoped and shared stores.

    type Env = {
        store?: {
            request?: Record<string, unknown>;
            shared?: Record<string, unknown>;
        };
    }
    Index

    Properties

    Properties

    store?: { request?: Record<string, unknown>; shared?: Record<string, unknown> }