waifuim
    Preparing search index...

    Interface WaifuImage

    Represents an image.

    interface WaifuImage {
        addedToAlbumAt: string | null;
        albums: Album[];
        artists: Artist[];
        byteSize: number;
        dominantColor: string;
        extension: string;
        favorites: number;
        height: number;
        id: number;
        isAnimated: boolean;
        isNsfw: boolean;
        likedAt: string | null;
        perceptualHash: string;
        reviewStatus: ReviewStatus;
        source: string | null;
        tags: Tag[];
        uploadedAt: string;
        uploaderId: number | null;
        url: string;
        width: number;
    }
    Index

    Properties

    addedToAlbumAt: string | null
    albums: Album[]
    artists: Artist[]
    byteSize: number
    dominantColor: string
    extension: string
    favorites: number
    height: number
    id: number
    isAnimated: boolean
    isNsfw: boolean
    likedAt: string | null
    perceptualHash: string
    reviewStatus: ReviewStatus
    source: string | null
    tags: Tag[]
    uploadedAt: string
    uploaderId: number | null
    url: string
    width: number