8 lines
154 B
JavaScript
Raw Normal View History

2024-01-15 22:53:27 +08:00
class FillStylePattern {
constructor(img, pattern) {
this._style = pattern;
this._img = img;
}
}
export default FillStylePattern;