export function getClosestTableCell(target: EventTarget | Node | null) { const cell = target instanceof HTMLElement ? target.closest('th, td') : target instanceof Node ? target.parentElement?.closest('th, td') : null return cell instanceof HTMLTableCellElement ? cell : null }