@hatiolab/things-scene 3.0.45 → 3.1.0

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/things-scene.d.ts CHANGED
@@ -318,6 +318,7 @@ declare module '@hatiolab/things-scene' {
318
318
  isLayer(): boolean
319
319
  is3dish(): boolean
320
320
  isHTMLElement(): boolean
321
+ isConnectable(): boolean
321
322
 
322
323
  ready(): void
323
324
  dispose(): void
@@ -358,8 +359,8 @@ declare module '@hatiolab/things-scene' {
358
359
  width: number,
359
360
  height: number
360
361
  ): void
361
- drawStroke(context: CanvasRenderingContext2D): void
362
- drawFill(context: CanvasRenderingContext2D): void
362
+ drawStroke(context: CanvasRenderingContext2D, override?: { [prop: string]: any }): void
363
+ drawFill(context: CanvasRenderingContext2D, override?: { [prop: string]: any }): void
363
364
  drawText(context: CanvasRenderingContext2D): void
364
365
 
365
366
  ondblclick(e: MouseEvent): void