Interface ThumbnailResolution

Represents the resolution of a Verizon Media thumbnail.

interface ThumbnailResolution {
    bh: number;
    bw: number;
    height?: number;
    prefix: string;
    width?: number;
}

Properties

bh: number

The requested height, in pixels.

Remarks


- This can differ from the actual width because images are not stretched.

bw: number

The requested width, in pixels.

Remarks


- This can differ from the actual width because images are not stretched.

height?: number

The height of the thumbnail, in pixels.

prefix: string

The prefix of the thumbnail.

width?: number

The width of the thumbnail, in pixels.