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

    Type Alias DecodeError

    Decode error with contextual information.

    Includes error code, human-readable message, and optional spec reference.

    type DecodeError = {
        code: DecodeErrorCode;
        message: string;
        offset?: number;
        specRef?: string;
    }
    Index

    Properties

    Error classification code

    message: string

    Human-readable error message (lowercase, no trailing punctuation)

    offset?: number

    Byte offset where error occurred

    specRef?: string

    MQTT spec section reference (e.g., "§2.2.3")