({ row, column }: CellRange)
| 94 | } |
| 95 | }, |
| 96 | set currentCell({ row, column }: CellRange) { |
| 97 | verifyRanges(cellRange, { row, column }); |
| 98 | widget.setCurrentCell(row, column); |
| 99 | }, |
| 100 | set sortItems({ column, order }: Sort) { |
| 101 | verifyRanges(cellRange, { column }); |
| 102 | widget.sortItems(column, order); |
nothing calls this directly
no test coverage detected