BunHttpServerRequest
Accessor for the Bun request behind an Effect HTTP server request.
This module exports toBunServerRequest, which returns the underlying Bun.BunRequest stored inside a Bun-backed HttpServerRequest. It is meant for code that needs to interoperate with Bun-specific request APIs.
Accessors
toBunServerRequest
Added in v4.0.0
Source
Signature
declare function toBunServerRequest<T extends string = string>( self: HttpServerRequest,): BunRequest<T>;
Returns the underlying
Bun.BunRequestfrom an EffectHttpServerRequest.