import { NextFunction, Request, Response } from 'express' export type Handler = (req: Request, res: Response, next: NextFunction) => any