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
Returns the underlying web-standard Request from an Effect HttpServerRequest.
Signature
declare function toDenoServerRequest(self: HttpServerRequest): Request