UNPKG

@point-hub/papi

Version:

Point API Framework

8 lines (6 loc) 202 B
import { NextFunction, Request, Response } from 'express' export default function newMiddleware<T>(options?: T) { return function (req: Request, res: Response, next: NextFunction) { next() } }