Write Uint8Array to a file
(filePath: string, data: Uint8Array)
| 35 | |
| 36 | /** Write Uint8Array to a file */ |
| 37 | writeFileBytes(filePath: string, data: Uint8Array): Promise<void>; |
| 38 | |
| 39 | /** Copy file from source to destination */ |
| 40 | copyFile(src: string, dest: string): Promise<void>; |
no outgoing calls
no test coverage detected