Highlight interface
Highlight is an element to mark any cell inside the grid.
Highlight (opposed to focus):
it can be placed on any cell
it must be managed by a developer unlike ‘focus’
Definition
interface Highlight {
readonly rowId: Id;
readonly columnId: Id;
readonly borderColor?: string;
readonly className?: string;
}