Libraries
    Preparing search index...

    Interface AuthenticationContext

    Transport-agnostic context passed to authentication schemes. HTTP middleware builds this from RequestContext; future transports (WebSocket, gRPC) provide the same shape.

    interface AuthenticationContext {
        cookies: Record<string, string>;
        headers: Record<string, string>;
        items: Map<string, unknown>;
    }
    Index

    Properties

    Properties

    cookies: Record<string, string>
    headers: Record<string, string>
    items: Map<string, unknown>