/** * Render a normalized {@link HttpOutput} (the `http:request` flow's output) to a * Web `Response`. This is the web-fetch (worker) analog of the Node * `writeHttpResponse` renderer — it lets a V8-isolate adapter run the SAME flow * every other transport runs and render its normalized result, instead of * bypassing the pipeline. * * Returns `undefined` for outputs that mean "no response produced" (`next`, * `consumed`) so the caller can fall through (e.g. to a 404). */ import { type HttpOutput } from '../common/schemas/http-output.schema'; export declare function renderHttpOutputToWebResponse(output: HttpOutput): Response | undefined; //# sourceMappingURL=web-response.renderer.d.ts.map