// types/express.d.ts
// Copyright (C) 2025 DTP Technologies, LLC
// All Rights Reserved

declare global {
  namespace Express {
    interface Locals {
      // define custom locals properties here
    }

    interface Request {
      // define custom request properties here
    }

    // req.params
    interface ParamsDictionary {
      [key: string]: unknown;
      // add custom parameters here
    }
  }
}
