js-aprs-fap
Version:
NodeJs library for parsing APRS packets.
17 lines • 712 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.PacketTypeEnum = void 0;
var PacketTypeEnum;
(function (PacketTypeEnum) {
PacketTypeEnum["CAPABILITIES"] = "capabilities";
PacketTypeEnum["DX"] = "dx";
PacketTypeEnum["ITEM"] = "item";
PacketTypeEnum["LOCATION"] = "location";
PacketTypeEnum["MESSAGE"] = "message";
PacketTypeEnum["OBJECT"] = "object";
PacketTypeEnum["STATUS"] = "status";
PacketTypeEnum["TELEMETRY"] = "telemetry";
PacketTypeEnum["TELEMETRY_MESSAGE"] = "telemetry-message";
PacketTypeEnum["WEATHER"] = "wx";
})(PacketTypeEnum || (exports.PacketTypeEnum = PacketTypeEnum = {}));
//# sourceMappingURL=PacketTypeEnum.js.map