(path: string)
| 78 | } |
| 79 | |
| 80 | export function loadImage(path: string): number { |
| 81 | return bloom_load_image(path as any); |
| 82 | } |
| 83 | |
| 84 | export function imageResize(imageHandle: number, width: number, height: number): void { |
| 85 | bloom_image_resize(imageHandle, width, height); |
nothing calls this directly
no test coverage detected