* Stream the file (or a byte range of it) in chunks. The total * bytes yielded MUST equal min(byteLength ?? size - byteOffset, * size - byteOffset). Throws if the path does not exist.
(path: string, byteOffset?: number, byteLength?: number)
| 27 | * size - byteOffset). Throws if the path does not exist. |
| 28 | */ |
| 29 | readChunks(path: string, byteOffset?: number, byteLength?: number): AsyncIterable<Uint8Array>; |
| 30 | |
| 31 | /** |
| 32 | * Read the entire file into memory. Used for images and for the |
no outgoing calls
no test coverage detected