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