import { type Deno } from "https://deno.land/x/deno@v1.28.0/cli/dts/lib.deno.ns.d.ts";
const { HttpConn } = Deno;
The async iterable that is returned from Deno.serveHttp
which
yields up RequestEvent
events, representing individual
requests on the HTTP server connection.
Methods
nextRequest(): Promise<RequestEvent | null>
An alternative to the async iterable interface which provides promises
which resolve with either a RequestEvent
when there is
another request or null
when the client has closed the connection.