Rollup for proper CLI

This commit is contained in:
Surma
2020-09-09 18:22:50 +01:00
parent 3b07862efb
commit 47fb7f9f71
8 changed files with 657 additions and 29 deletions

7
cli/src/image_data.js Normal file
View File

@@ -0,0 +1,7 @@
export default class ImageData {
constructor(data, width, height) {
this.data = data;
this.width = width;
this.height = height;
}
};