(path: string)
| 802 | } |
| 803 | |
| 804 | export function fileExists(path: string): boolean { |
| 805 | return bloom_file_exists(path as any) !== 0.0; |
| 806 | } |
| 807 | |
| 808 | export function readFile(path: string): string { |
| 809 | return bloom_read_file(path as any) as any; |
nothing calls this directly
no test coverage detected