mirror of
https://github.com/GoogleChromeLabs/squoosh.git
synced 2025-11-11 16:26:20 +00:00
8 lines
151 B
JavaScript
8 lines
151 B
JavaScript
module.exports = class ImageData {
|
|
constructor(data, width, height) {
|
|
this.data = data;
|
|
this.width = width;
|
|
this.height = height;
|
|
}
|
|
};
|