UNPKG

clean-insights-sdk

Version:

A privacy-preserving measurement framework.

25 lines (24 loc) 527 B
/** * EventAggregationRule.ts * CleanInsightsSDK * * Created by Benjamin Erhart on 19.01.21. * Copyright © 2021 Guardian Project. All rights reserved. */ export { EventAggregationRule }; /** * The rule how to aggregate the value of an event (if any given) with * subsequent calls. * * @type {{Avg: string, Sum: string}} */ declare enum EventAggregationRule { /** * Calculate the sum of the values. */ Sum = "sum", /** * Calculate the mean average of the values. */ Avg = "avg" }