// types/express.d.ts // Copyright (C) 2026 Robert Colbert // All Rights Reserved import { IUser } from "../src/models/user.js"; declare global { namespace Express { interface Locals { user?: IUser | null; // define custom locals properties here } interface Request { rawBody?: string; user?: IUser | null; // define custom request properties here } // req.params interface ParamsDictionary { [key: string]: unknown; // add custom parameters here } } }