import { CustomCellSummaryOperation } from '../AdaptableState/Common/CellSummary'; import { AdaptableColumnContext, NumberFormatterOptions } from '../types'; /** * Options to provide custom Cell Summary Operations & Display Formats */ export interface CellSummaryOptions { /** * Custom Numeric Cell Summary Operations to add to set shipped by AdapTable */ customCellSummaryOperations?: CustomCellSummaryOperation[]; /** * Numeric format to use for summary value; a Format Column DisplayFormat will take precedence */ numericDisplayFormat?: NumberFormatterOptions | ((columnContext: AdaptableColumnContext) => NumberFormatterOptions); }