module.exports = class ImageData { constructor(data, width, height) { this.data = data; this.width = width; this.height = height; } };