import { PrismaClient } from "@prisma/client";

declare global {
    namespace Express {
        interface Request {
            user: {
                institutionId?: string;
                studentInstitutionId?: string;
                role?: string;
                id?: string
            }
        }
    }
}

export { };
