Skip to main content
Version: 0.2.0

Interface: Blob

torchlive/media.Blob

Properties

size

Readonly size: number

The Blob interface's size property returns the size of the Blob in bytes.

Defined in

torchlive/media.ts:23

Methods

arrayBuffer

arrayBuffer(): Promise<Uint8Array>

The arrayBuffer() function returns a Promise that resolves with the contents of the blob as binary data contained in an ArrayBuffer.

Returns

Promise<Uint8Array>

Defined in

torchlive/media.ts:19