express-handler.ts 166 B

123
  1. import { NextFunction, Request, Response } from 'express'
  2. export type ExpressPromiseHandler = (req: Request<any>, res: Response, next: NextFunction) => Promise<any>