]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - express.ts
e72be36e46dd26caa7b193e319e057dfc262d526
[github/Chocobozzz/PeerTube.git] / express.ts
1 import { NextFunction, Request, Response } from 'express'
2
3 export type ExpressPromiseHandler = (req: Request<any>, res: Response, next: NextFunction) => Promise<any>