UNPKG

@syngrisi/syngrisi

Version:
4 lines (2 loc) 155 B
import { Request, Response, NextFunction } from 'express'; export type Midleware = (req: Request, res: Response, next?: NextFunction) => Promise<void> ;