Fake Mirrors
    Preparing search index...

    Interface HttpServerContextState

    Represents the shared state of an http-server context.

    This state is passed to all middleware and can be used to share data across the request/connection lifecycle.

    interface HttpServerContextState {
        errorPage: string;
        verbose: boolean;
        [key: string]: unknown;
    }

    Hierarchy (View Summary)

    Indexable

    • [key: string]: unknown
    errorPage: string
    verbose: boolean