waifuim
    Preparing search index...

    Interface Artist

    Represents an artist for an image including their social links.

    interface Artist {
        creator: PartialUser | null;
        creatorId: number | null;
        deviantArt: string | null;
        id: number;
        imageCount: number;
        images: WaifuImage[];
        name: string;
        patreon: string | null;
        pixiv: string | null;
        reviewStatus: ReviewStatus;
        twitter: string | null;
    }
    Index

    Properties

    creator: PartialUser | null
    creatorId: number | null
    deviantArt: string | null
    id: number
    imageCount: number
    images: WaifuImage[]
    name: string
    patreon: string | null
    pixiv: string | null
    reviewStatus: ReviewStatus
    twitter: string | null