Interface Part

A part (of a multipart) with headers and body.

interface Part {
    body: Uint8Array;
    headers: Headers;
    bytes(): Uint8Array;
}

Implemented by

Properties

Methods

Properties

The byte data of this part's body

headers: Headers

The headers of this part

Methods