Skip to main content
Module

x/oak/body.ts>BodyStream

A middleware framework for handling HTTP with Deno 🐿️ 🦕
Extremely Popular
Go to Latest
type alias BodyStream
import { type BodyStream } from "https://deno.land/x/oak@v11.1.0/body.ts";

The tagged type for "stream" bodies.

definition: { readonly type: "stream"; readonly value: ReadableStream<Uint8Array>; }