aboutsummaryrefslogblamecommitdiffhomepage
path: root/server/types/express-handler.ts
blob: e72be36e46dd26caa7b193e319e057dfc262d526 (plain) (tree)
1
2
3


                                                                                                          
import { NextFunction, Request, Response } from 'express'

export type ExpressPromiseHandler = (req: Request<any>, res: Response, next: NextFunction) => Promise<any>