import { AggregationOptions } from './aggregation.types'; import { DcuplItemsOptions } from './list.types'; export type DcuplSectionItemOption = DcuplItemsOptions & { key: string; }; export type DcuplGroupByOptions = DcuplItemsOptions & { attribute: string; aggregates?: AggregationOptions[]; items?: DcuplSectionItemOption[]; excludeZeros?: boolean; excludeUndefineds?: boolean; excludeUnresolved?: boolean; };