@squidcloud/client
    Preparing search index...

    Interface ExtractDataFromDocumentPage

    A single extracted page from the document, including structured content and images.

    interface ExtractDataFromDocumentPage {
        content: string;
        images: ExtractDataFromDocumentImage[];
        index: number;
        title?: string;
    }
    Index

    Properties

    content: string

    Extracted textual content or CSV representation of the page.

    List of images extracted from this page.

    index: number

    Page index in the original document (0-based).

    title?: string

    Optional title for the page (e.g., sheet name or section heading).