UNPKG

@redwoodjs/sdk

Version:

Build fast, server-driven webapps on Cloudflare with SSR, RSC, and realtime

5 lines (4 loc) 210 B
import { type EventSourceMessage } from "eventsource-parser/stream"; export declare function consumeEventStream({ onChunk, }: { onChunk: (chunk: EventSourceMessage) => void; }): WritableStream<Uint8Array>;