f6f0c71
1
2
3
4
5
6
7
8
9
class Image { constructor(path, width, height) { this.path = path this.width = width this.height = height } } export { Image }