Read a file as Uint8Array
(filePath: string)
| 29 | |
| 30 | /** Read a file as Uint8Array */ |
| 31 | readFileBytes(filePath: string): Promise<Uint8Array>; |
| 32 | |
| 33 | /** Get file size in bytes, or null when unavailable. */ |
| 34 | getFileSize(filePath: string): Promise<number | null>; |
no outgoing calls
no test coverage detected