14 lines
308 B
JavaScript
14 lines
308 B
JavaScript
"use strict";
|
|
/**
|
|
* System variables for a telemetry item.
|
|
*/
|
|
var Envelope = (function () {
|
|
function Envelope() {
|
|
this.ver = 1;
|
|
this.sampleRate = 100.0;
|
|
this.tags = {};
|
|
}
|
|
return Envelope;
|
|
}());
|
|
module.exports = Envelope;
|
|
//# sourceMappingURL=Envelope.js.map
|