forked from external-repos/squoosh
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;
|
|
}
|
|
};
|