@elrondnetwork/erdjs-data-api-client
Version:
MultiversX Data API client
25 lines • 984 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.HistoricalValue = exports.AggregateValue = void 0;
var AggregateValue;
(function (AggregateValue) {
AggregateValue["first"] = "first";
AggregateValue["last"] = "last";
AggregateValue["min"] = "min";
AggregateValue["max"] = "max";
AggregateValue["count"] = "count";
AggregateValue["sum"] = "sum";
AggregateValue["avg"] = "avg";
})(AggregateValue = exports.AggregateValue || (exports.AggregateValue = {}));
var HistoricalValue;
(function (HistoricalValue) {
HistoricalValue["first"] = "first";
HistoricalValue["last"] = "last";
HistoricalValue["min"] = "min";
HistoricalValue["max"] = "max";
HistoricalValue["count"] = "count";
HistoricalValue["sum"] = "sum";
HistoricalValue["avg"] = "avg";
HistoricalValue["time"] = "time";
})(HistoricalValue = exports.HistoricalValue || (exports.HistoricalValue = {}));
//# sourceMappingURL=values.js.map