class DragingSelection { anchor1:number; anchor2:number; constructor(anchor1:number, anchor2:number) { this.anchor1 = anchor1; this.anchor2 = anchor2; } } export default DragingSelection;