/** * Defines which types of Rows to exclude when rendering Format Columns, Action Columns and Badges */ export interface RowScope { /** * Exclude regular data rows */ ExcludeDataRows?: boolean; /** * Exclude Group Rows */ ExcludeGroupRows?: boolean; /** * Exclude Summary Rows (used in Row Summaries) */ ExcludeSummaryRows?: boolean; /** * Exclude Grand Total Rows (used in Aggregations) */ ExcludeTotalRows?: boolean; }