Interface: OpfsBlob
Minimal subset of the DOM Blob interface used by OpfsSpoolReader streaming-mode random-access reads. Real OPFS handles return a File here; we narrow to the methods we actually call.
Extended by
Properties
| Property | Modifier | Type |
|---|---|---|
size | readonly | number |
Methods
slice()
ts
slice(
start?: number,
end?: number,
contentType?: string): OpfsBlob;Parameters
| Parameter | Type |
|---|---|
start? | number |
end? | number |
contentType? | string |
Returns
OpfsBlob
stream()
ts
stream(): OpfsReadableStream;Returns
text()
ts
text(): Promise<string>;Returns
Promise<string>