Interface PhotoSize

Describes an image in JPEG format.

interface PhotoSize {
    @type: "photoSize";
    height: number;
    photo: File;
    progressive_sizes: number[];
    type: string;
    width: number;
}

Properties

@type: "photoSize"
height: number

Image height.

photo: File

Information about the image file.

progressive_sizes: number[]

Sizes of progressive JPEG file prefixes, which can be used to preliminarily show the image; in bytes.

type: string
width: number

Image width.