Skip to main content
Deno 2 is finally here 🎉️
Learn more
Module

x/superdeno/test/deps.ts>Oak.Middleware

Super-agent driven library for testing Deno HTTP servers.
Go to Latest
interface Oak.Middleware
import { type Oak } from "https://deno.land/x/superdeno@4.8.0/test/deps.ts";
const { Middleware } = Oak;

Middleware are functions which are chained together to deal with requests.

Type Parameters

optional
S extends State = Record<string, any>
optional
T extends Context = Context<S>

Call Signatures

(context: T, next: () => Promise<unknown>): Promise<unknown> | unknown