auth.provider API
    Preparing search index...
    interface Request {
        session: Session & Partial<SessionData>;
        sessionID: string;
        sessionStore: SessionStore;
        tokenBinding?: TokenBinding;
    }
    Index

    Properties

    session: Session & Partial<SessionData>

    This request's Session object. Even though this property isn't marked as optional, it won't exist until you use the express-session middleware Declaration merging can be used to add your own properties.

    SessionData

    sessionID: string

    This request's session ID. Even though this property isn't marked as optional, it won't exist until you use the express-session middleware

    sessionStore: SessionStore

    The Store in use. Even though this property isn't marked as optional, it won't exist until you use the express-session middleware The function generate is added by express-session

    tokenBinding?: TokenBinding