An image

interface Photo {
    id: number;
    src: {
        large: string;
        portrait: string;
        tiny: string;
    };
}

Properties

Properties

id: number

The ID of the Photo

src: {
    large: string;
    portrait: string;
    tiny: string;
}

Photo URLs

Type declaration

  • large: string

    853px by 1280px URL

  • portrait: string

    427px by 640px URL

  • tiny: string

    100px by 150px URL

Generated using TypeDoc