forked from external-repos/squoosh
8 lines
148 B
JavaScript
8 lines
148 B
JavaScript
export default class ImageData {
|
|
constructor(data, width, height) {
|
|
this.data = data;
|
|
this.width = width;
|
|
this.height = height;
|
|
}
|
|
}
|