DenoHttpServerRequest
Accessor for the web-standard request behind a Deno HTTP server request.
Unlike Bun's accessor, this function has no route-pattern generic because Deno.serve always receives a standard Request. Connection information is intentionally kept internal to DenoHttpServer.
Accessors
toDenoServerRequest
Added in v4.0.0
Source
Signature
declare function toDenoServerRequest(self: HttpServerRequest): Request;
Returns the underlying web-standard
Requestfrom an EffectHttpServerRequest.