skribd / src /object /Image.js
rkwyu
First commit
f6f0c71
raw
history blame contribute delete
159 Bytes
class Image {
constructor(path, width, height) {
this.path = path
this.width = width
this.height = height
}
}
export { Image }