Node-Red configuration
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

decodePacket.browser.d.ts 178B

123
  1. import { Packet, BinaryType, RawData } from "./commons.js";
  2. declare const decodePacket: (encodedPacket: RawData, binaryType?: BinaryType) => Packet;
  3. export default decodePacket;