| 42 | export * from "./utils/constants.js"; |
| 43 | |
| 44 | export interface RawImageData { |
| 45 | width: number; |
| 46 | height: number; |
| 47 | data: Buffer | Uint8Array | Uint8ClampedArray | number[]; |
| 48 | } |
| 49 | |
| 50 | /** |
| 51 | * Instead of loading an image into an instance you can initialize a new Jimp instance with a empty bitmap. |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…