Interface HeaderSelectionResults

interface HeaderSelectionResults {
    getCellCoordsFromOffset: ((x, y) => CellCoords);
    onPointerDown: ((e) => void);
}

Properties

getCellCoordsFromOffset: ((x, y) => CellCoords)

Type declaration

onPointerDown: ((e) => void)

Handler for pointerdown, use to set activeCoords

Type declaration

    • (e): void
    • Parameters

      • e: PointerEvent<HTMLElement>

      Returns void