Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

BufferedStreamResponse

import { BufferedStreamResponse } from "https://raw.githubusercontent.com/worker-tools/stream-response/master/index.ts";

If for any reason you don't want to use streaming response bodies, you can use this class instead, which will buffer the entire body before releasing it to the network. Note that headers will still be sent immediately.

class BufferedStreamResponse extends Response {
constructor(body?: StreamBodyInit | null, init?: ResponseInit);
}

§Extends

§
Response
[src]

§Constructors

§
new BufferedStreamResponse(body?: StreamBodyInit | null, init?: ResponseInit)
[src]