interface PopularBlurb {
    description: string;
    id: number;
    image: string;
    stats: Record<
        | "chapters"
        | "pages"
        | "latest"
        | "rating"
        | "followers", number>;
    tags: string[];
    title: string;
    type: string;
}

Hierarchy (view full)

Properties

description: string
id: number
image: string
stats: Record<
    | "chapters"
    | "pages"
    | "latest"
    | "rating"
    | "followers", number>
tags: string[]
title: string
type: string