UNPKG

redis-time-series-ts

Version:
26 lines (25 loc) 848 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.AggregationType = void 0; /** * The type of aggregation to be executed * * Types: * * AVG, SUM, MIN, MAX, RANGE, COUNT, FIRST, LAST, STD_P, STD_S, VAR_P, VAR_S */ var AggregationType; (function (AggregationType) { AggregationType["AVG"] = "avg"; AggregationType["SUM"] = "sum"; AggregationType["MIN"] = "min"; AggregationType["MAX"] = "max"; AggregationType["RANGE"] = "range"; AggregationType["COUNT"] = "count"; AggregationType["FIRST"] = "first"; AggregationType["LAST"] = "last"; AggregationType["STD_P"] = "std.p"; AggregationType["STD_S"] = "std.s"; AggregationType["VAR_P"] = "var.p"; AggregationType["VAR_S"] = "var.s"; })(AggregationType = exports.AggregationType || (exports.AggregationType = {}));