@3dsource/metabox-front-api
    Preparing search index...

    Interface Thumbnail

    Represents a thumbnail image entity with dimensions and URL path.

    Thumbnail interface representing preview images. Contains image data and metadata for visual representation.

    Preview image data: contains URLs and metadata for thumbnails used in product selectors, material swatch pickers, and environment preview cards. Essential for building visual option pickers.

    Access thumbnailList arrays from materials, environments, and products. Use URLs directly in img tags. Implement lazy loading for grids with many options. Consider preloading thumbnails for the currently visible category.

    interface Thumbnail {
        __typename: "Thumbnail";
        height: number;
        urlPath: string;
        width: number;
    }
    Index

    Properties

    __typename: "Thumbnail"

    Represents object typename (as a string, flexible type).

    height: number

    Height of the thumbnail.

    urlPath: string

    URL path to the thumbnail image.

    width: number

    Width of the thumbnail.