BlobByteSource
Implements
Section titled “Implements”SeekableByteSource
Constructors
Section titled “Constructors”Constructor
Section titled “Constructor”new BlobByteSource(blob: Blob, options?: object): BlobByteSource;Parameters
Section titled “Parameters”| Parameter | Type |
|---|---|
blob | Blob |
options? | { size?: number; } |
options.size? | number |
Returns
Section titled “Returns”BlobByteSource
Properties
Section titled “Properties”| Property | Modifier | Type |
|---|---|---|
size | readonly | number |
Methods
Section titled “Methods”readRange()
Section titled “readRange()”readRange(start: number, end: number): Promise<Uint8Array<ArrayBufferLike>>;Parameters
Section titled “Parameters”| Parameter | Type |
|---|---|
start | number |
end | number |
Returns
Section titled “Returns”Promise<Uint8Array<ArrayBufferLike>>
Implementation of
Section titled “Implementation of”SeekableByteSource.readRangestream()
Section titled “stream()”stream(): ReadableStream<Uint8Array<ArrayBufferLike>>;Returns
Section titled “Returns”ReadableStream<Uint8Array<ArrayBufferLike>>
Implementation of
Section titled “Implementation of”SeekableByteSource.stream