import { type oak } from "https://deno.land/x/hex@0.5.15/src/service/deps.ts";
const { Middleware } = oak;
Middleware are functions which are chained together to deal with requests.
Call Signatures
(context: T, next: () => Promise<unknown>): Promise<unknown> | unknown