Type alias AggregateGroupByResult<T, M>

AggregateGroupByResult<T, M>: AggregateResult<T, M> & {
    groupedBy: {
        prop: string;
        value: string | number | boolean | AggregatedGeoCoordinate | string[] | number[] | boolean[];
    };
}

Type Parameters

Type declaration

  • groupedBy: {
        prop: string;
        value: string | number | boolean | AggregatedGeoCoordinate | string[] | number[] | boolean[];
    }