import type { TableTotalsFunction } from "./TableTotalsFunction.js"; export type TableColumnInfo = { id: number; name: string; totalsFunction: TableTotalsFunction; totalsLabel?: string; totalsFormula?: string; calculatedColumnFormula?: string; };