Files
squoosh/cli/image_data.js
2020-09-08 00:18:57 +01:00

8 lines
151 B
JavaScript

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