CoverImage is an interface representing a cover image. It includes the extra large, large, medium size images and color each having their own properties.

interface CoverImage {
    color: string;
    extraLarge: string;
    large: string;
    medium: string;
}

Properties

color: string

color is a string representing the color of the cover image.

extraLarge: string

extraLarge is a string representing the URL of the extra large size cover image.

large: string

large is a string representing the URL of the large size cover image.

medium: string

medium is a string representing the URL of the medium size cover image.