Bitbybit Docs
    Preparing search index...

    Interface WireDebugInfo

    Introspection of a wire: edge count, closed flag, total length, plus per-edge debug info.

    interface WireDebugInfo {
        valid: boolean;
        nbEdges: number;
        closed: boolean;
        totalLength: number;
        edges: EdgeDebugInfo[];
    }
    Index

    Properties

    valid: boolean
    nbEdges: number
    closed: boolean
    totalLength: number
    edges: EdgeDebugInfo[]