@hatiolab/things-scene 3.3.3 → 3.3.4

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,6 +1,6 @@
1
1
  {
2
2
  "name": "@hatiolab/things-scene",
3
- "version": "3.3.3",
3
+ "version": "3.3.4",
4
4
  "description": "2D graphic library",
5
5
  "main": "src/index.js",
6
6
  "module": "things-scene.mjs",
package/things-scene.d.ts CHANGED
@@ -433,7 +433,7 @@ declare module '@hatiolab/things-scene' {
433
433
  drawStroke(context: CanvasRenderingContext2D, override?: { [prop: string]: any }): void
434
434
  drawFill(context: CanvasRenderingContext2D, override?: { [prop: string]: any }): void
435
435
  drawText(context: CanvasRenderingContext2D): void
436
- move({ x: number, y: number }, absolutely?: boolean): void
436
+ move(position: { x: number; y: number }, absolutely?: boolean): void
437
437
 
438
438
  ondblclick(e: MouseEvent): void
439
439