* Read file contents as a stream * @param path Absolute or relative path to file * @param abortSignal Optional abort signal for cancellation * @returns Readable stream of file contents * @throws RuntimeError if file cannot be read
(path: string, abortSignal?: AbortSignal)
| 377 | * @throws RuntimeError if file cannot be read |
| 378 | */ |
| 379 | readFile(path: string, abortSignal?: AbortSignal): ReadableStream<Uint8Array>; |
| 380 | |
| 381 | /** |
| 382 | * Write file contents atomically from a stream |
no outgoing calls