Represents the dimensions of a media item, such as its width and height in pixels. This interface is commonly used to describe the size of images, videos, or other media.

interface Dimensions {
    height: number;
    width: number;
}

Properties

Properties

height: number

The height of the media item, measured in pixels.

width: number

The width of the media item, measured in pixels.