@squidcloud/client
    Preparing search index...

    Interface ExtractDataFromDocumentImage

    Representation of an image extracted from a document, for use in generated content.

    interface ExtractDataFromDocumentImage {
        id: string;
        imageBase64Url: string;
        textToReplaceInContent: string;
    }
    Index

    Properties

    id: string

    A unique identifier for the image.

    imageBase64Url: string

    The base64-encoded image data, prefixed with its MIME type (e.g., data:image/png;base64,...).

    textToReplaceInContent: string

    A placeholder or marker in the content where this image should be inserted.