import type { TableColumnPatch } from "./TableColumnPatch.js"; import type { TableStylePatch } from "./TableStylePatch.js"; export type TablePatch = { name: string; displayName?: string; reference?: string; headerRowCount?: number; totalsRowCount?: number; hasAutoFilter?: boolean; columns?: Array; style?: TableStylePatch; };