UNPKG

@metacall/faas

Version:

Reimplementation of MetaCall FaaS platform written in TypeScript.

3 lines (2 loc) 211 B
import { NextFunction, Request, RequestHandler, Response } from 'express'; export declare const catchAsync: (fn: (req: Request, res: Response, next: NextFunction) => Promise<Response | void>) => RequestHandler;