8 lines
154 B
JavaScript
Raw Permalink Normal View History

2026-01-27 17:09:31 +08:00
class FillStylePattern {
constructor(img, pattern) {
this._style = pattern;
this._img = img;
}
}
export default FillStylePattern;