pixel-data-js 0.17.0 → 0.17.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "pixel-data-js",
3
3
  "type": "module",
4
- "version": "0.17.0",
4
+ "version": "0.17.1",
5
5
  "packageManager": "pnpm@10.30.0",
6
6
  "description": "JS Pixel and ImageData operations",
7
7
  "author": {
@@ -36,7 +36,7 @@ export class PixelWriter<M> {
36
36
  public historyManager: HistoryManager
37
37
  public accumulator: PixelAccumulator
38
38
  protected config: PixelEngineConfig
39
- private mutator: M
39
+ readonly mutator: M
40
40
 
41
41
  constructor(target: PixelData, mutatorFactory: (writer: PixelWriter<any>) => M, {
42
42
  tileSize = 256,