15 lines
368 B
JavaScript
15 lines
368 B
JavaScript
"use strict";
|
|
// THIS FILE WAS AUTOGENERATED
|
|
var DataPointType = require("./DataPointType");
|
|
"use strict";
|
|
/**
|
|
* Metric data single measurement.
|
|
*/
|
|
var DataPoint = (function () {
|
|
function DataPoint() {
|
|
this.kind = DataPointType.Measurement;
|
|
}
|
|
return DataPoint;
|
|
}());
|
|
module.exports = DataPoint;
|
|
//# sourceMappingURL=DataPoint.js.map
|