@adcp/client API Reference - v4.19.0
    Preparing search index...

    Interface ImageAsset

    Image asset with URL and dimensions

    interface ImageAsset {
        url: string;
        width: number;
        height: number;
        format?: string;
        alt_text?: string;
        provenance?: Provenance;
    }
    Index

    Properties

    url: string

    URL to the image asset

    width: number

    Width in pixels

    height: number

    Height in pixels

    format?: string

    Image file format (jpg, png, gif, webp, etc.)

    alt_text?: string

    Alternative text for accessibility

    provenance?: Provenance