import type { GridSelection } from '../../treb-data-model/src/index'; import type { CellStyle } from '../../treb-base-types/src/index'; /** * state that should be reflected in toolbar buttons/selections */ export interface SelectionState { style?: CellStyle; merge?: boolean; table?: boolean; frozen?: boolean; empty?: boolean; comment?: string; selection?: GridSelection; relative_font_size?: number; }