Image is an interface representing an image. It includes the large and medium size images each having their own properties.

interface Image {
    large: string;
    medium: string;
}

Properties

Properties

large: string

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

medium: string

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