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

    Interface PageWord

    A Word with its page number — the shared shape behind both the OCR engine's own output (tesseract.ts) and the replay input contract (extract.ts's OcrWordInput).

    interface PageWord {
        confidence?: number;
        h: number;
        page: number;
        text: string;
        w: number;
        x: number;
        y: number;
    }

    Hierarchy

    • Word
      • PageWord
    Index
    confidence?: number
    h: number
    page: number
    text: string
    w: number
    x: number
    y: number