@ts-core/angular 13.0.56 → 13.0.57

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.
@@ -4370,7 +4370,6 @@ WindowImpl.BLINK_DELAY = 500;
4370
4370
  WindowImpl.SHAKE_DELAY = 500;
4371
4371
  WindowImpl.RESIZE_DELAY = 200;
4372
4372
 
4373
- // import { ResizableOptions } from '@interactjs/types';
4374
4373
  class WindowResizeable extends WindowImpl {
4375
4374
  // --------------------------------------------------------------------------
4376
4375
  //
@@ -4391,7 +4390,6 @@ class WindowResizeable extends WindowImpl {
4391
4390
  edges.left = true;
4392
4391
  edges.right = true;
4393
4392
  edges.bottom = true;
4394
- // let param = {} as ResizableOptions;
4395
4393
  let param = {};
4396
4394
  param.edges = edges;
4397
4395
  this.interactable.resizable(param);
@@ -4456,7 +4454,6 @@ class WindowResizeable extends WindowImpl {
4456
4454
  }
4457
4455
  }
4458
4456
 
4459
- // import { DraggableOptions } from '@interactjs/types';
4460
4457
  class WindowDragable extends WindowResizeable {
4461
4458
  constructor() {
4462
4459
  // --------------------------------------------------------------------------
@@ -4483,8 +4480,8 @@ class WindowDragable extends WindowResizeable {
4483
4480
  }
4484
4481
  this.dragMoveHandlerProxy = this.dragMoveHandler.bind(this);
4485
4482
  this.dragStartHandlerProxy = this.dragStartHandler.bind(this);
4486
- // let param = {} as DraggableOptions;
4487
4483
  let param = {};
4484
+ // let param = {} as any;
4488
4485
  this.interactable.draggable(param);
4489
4486
  this.interactable.on('dragmove', this.dragMoveHandlerProxy);
4490
4487
  this.interactable.on('dragstart', this.dragStartHandlerProxy);