@effortlessmotion/pdf-to-md
    Preparing search index...

    Interface AnalysisWord

    One recognized/collected word, page-relative; box is always present. See AnalysisPage.words for the coordinate contract and per-path granularity difference.

    interface AnalysisWord {
        box: { h: number; w: number; x: number; y: number };
        confidence?: number;
        text: string;
    }
    Index
    box: { h: number; w: number; x: number; y: number }
    confidence?: number
    text: string