@alvincrespo/hashnode-content-converter - v0.2.2
    Preparing search index...

    Interface ImageDownloadedEvent

    Event payload emitted after each image download attempt. Enables fine-grained progress tracking for image-heavy posts.

    interface ImageDownloadedEvent {
        error?: string;
        filename: string;
        is403?: boolean;
        postSlug: string;
        success: boolean;
    }
    Index

    Properties

    error?: string

    Error message if download failed

    filename: string

    The filename that was downloaded (e.g., "uuid.png")

    is403?: boolean

    Whether this was an HTTP 403 error (permanent failure)

    postSlug: string

    Post slug this image belongs to

    success: boolean

    Whether the download was successful