Interface Image

Represents an image.

interface Image {
    artist: null | Artist;
    byteSize: number;
    dominantColor: string;
    extension: string;
    favorites: number;
    height: number;
    imageId: number;
    isNsfw: boolean;
    likedAt: null | string;
    previewUrl: string;
    signature: string;
    source: null | string;
    tags: Tag[];
    uploadedAt: string;
    url: string;
    width: number;
}

Properties

artist: null | Artist
byteSize: number
dominantColor: string
extension: string
favorites: number
height: number
imageId: number
isNsfw: boolean
likedAt: null | string
previewUrl: string
signature: string
source: null | string
tags: Tag[]
uploadedAt: string
url: string
width: number