clean-insights-sdk
Version:
A privacy-preserving measurement framework.
21 lines (20 loc) • 609 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.EventAggregationRule = void 0;
/**
* The rule how to aggregate the value of an event (if any given) with
* subsequent calls.
*
* @type {{Avg: string, Sum: string}}
*/
var EventAggregationRule;
(function (EventAggregationRule) {
/**
* Calculate the sum of the values.
*/
EventAggregationRule["Sum"] = "sum";
/**
* Calculate the mean average of the values.
*/
EventAggregationRule["Avg"] = "avg";
})(EventAggregationRule || (exports.EventAggregationRule = EventAggregationRule = {}));