type AggregationResultOf<TDefinition> = TDefinition extends AggregationFnDef<any, any, any, infer TResult> ? TResult : unknown;Defined in: features/row-aggregation/rowAggregationFeature.types.ts:160
Extracts the result type produced by an aggregation definition.
TDefinition