<@!484443076484661257> You can type the req object...
# support-questions
r
@User You can type the req object in the following way:
Copy code
import { SessionContainer } from "supertokens-node/recipe/session";
import { Response, Request } from "express";

app.post("...", Session.verifySession(), (req: Request & {session: SessionContainer} , res: Response) => {
    let session = req.session;
})