@qualithm/mqtt-wire - v0.1.5
    Preparing search index...

    Type Alias MqttBinaryDecodeResult

    Result of decoding MQTT binary data.

    type MqttBinaryDecodeResult = {
        bytesRead: number;
        value: Uint8Array;
    }
    Index

    Properties

    Properties

    bytesRead: number

    Number of bytes consumed from the buffer.

    value: Uint8Array

    The decoded binary data.