Interface HostFetchStreamEvent

One streamed slice of the response body (a chunk as it arrives from the host). Concatenate .chunk across the stream to rebuild the body.

interface HostFetchStreamEvent {
    chunk: string;
}

Properties

Properties

chunk: string