import { Request } from 'express';

export interface IRequest extends Request {
  user?: any;
  vhost?: any;
  tenantInfo?: any;
}
