Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/opine/src/types.ts>RequestHandler

Minimalist web framework for Deno ported from ExpressJS.
Go to Latest
interface RequestHandler
import { type RequestHandler } from "https://deno.land/x/opine@2.3.3/src/types.ts";

Type Parameters

optional
P extends Params = ParamsDictionary
optional
ResBody = any
optional
ReqQuery = any

Call Signatures

(
req: OpineRequest<P, ResBody, ReqQuery>,
res: OpineResponse<ResBody>,
next: NextFunction,
): any