interface Sessions {
    _id: string;
    createdDate: Date;
    expires: Date;
    session: {
        cookie?: SessionCookie;
        jwt?: JwtAuthVerifiedSigPayload;
        passport?: SessionPassport;
    };
}

Properties

_id: string
createdDate: Date
expires: Date
session: {
    cookie?: SessionCookie;
    jwt?: JwtAuthVerifiedSigPayload;
    passport?: SessionPassport;
}