modern-canvas 0.14.8 → 0.14.10

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.
@@ -16,7 +16,7 @@ export declare class Obb2D extends Aabb2D implements RotatedRectangleLike {
16
16
  constructor();
17
17
  constructor(rect: RotatedRectangleLike);
18
18
  constructor(pointArray: Vector2Like[], rotation?: number);
19
- overlapsOnAxis(obb: Obb2D, axis?: 'horizontal' | 'vertical'): boolean;
19
+ overlapsOnAxis(obb: Obb2D | Aabb2D, axis?: 'horizontal' | 'vertical'): boolean;
20
20
  toCssStyle(): {
21
21
  left: string;
22
22
  top: string;
@@ -4,7 +4,6 @@ export interface Vector2Like {
4
4
  x: number;
5
5
  y: number;
6
6
  }
7
- export type PointLike = VectorLike;
8
7
  export declare class Vector2 extends Vector implements Vector2Like {
9
8
  get x(): number;
10
9
  set x(val: number);