import { RevSchemaField } from '../../common'; import { RevBehavioredColumnSettings } from '../settings'; import { RevViewCell } from './view-cell'; /** @public */ export interface RevLinedHoverCell { readonly viewCell: RevViewCell; readonly mouseOverLeftLine: boolean; readonly mouseOverTopLine: boolean; } /** @public */ export namespace RevLinedHoverCell { export function isMouseOverLine(hoverCell: RevLinedHoverCell) { return hoverCell.mouseOverLeftLine || hoverCell.mouseOverTopLine; } }