export type GroupByAggregateItem = { /** * The group that this item is representing */ group: T; /** * The count of items that this group represents */ count: number; }; export type GroupByAggregate = GroupByAggregateItem[];