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

    Interface ImageProcessingError

    Details about an image processing error.

    interface ImageProcessingError {
        error: string;
        filename: string;
        is403: boolean;
        url: string;
    }
    Index

    Properties

    Properties

    error: string

    Error message describing the failure.

    filename: string

    Filename that failed to download (e.g., "uuid.png").

    is403: boolean

    True if this was an HTTP 403 Forbidden error (permanent failure). These should be tracked separately for reporting.

    url: string

    Original CDN URL that failed.