import { Cell, type CellModel, type CellAddress } from "./cell.js"; import type { Style, NumFmt, Font, Alignment, Protection, Borders, Fill, CellValue, RowValues } from "./types.js"; import type { Worksheet } from "./worksheet.js"; interface RowDimensions { min: number; max: number; } export interface RowModel { cells: CellModel[]; number: number; min: number; max: number; height?: number; customHeight?: boolean; style: Partial