Represents a Comick manga entry from the search API. Extends the base manga entry with Comick-specific properties.

export interface ComickManga extends BaseMangaEntry {
source: MangaSource.COMICK;
rating?: string;
rating_count?: number;
follow_count?: number;
user_follow_count?: number;
content_rating?: string;
demographic?: number;
md_titles?: Array<{
title: string;
lang: string;
}>;
md_comics?: {
id: string;
title: string;
slug: string;
};
highlight?: string; // Search highlight from API
}
interface ComickManga {
    source: COMICK;
    rating?: string;
    rating_count?: number;
    follow_count?: number;
    user_follow_count?: number;
    content_rating?: string;
    demographic?: number;
    md_titles?: { title: string; lang: string }[];
    md_comics?: { id: string; title: string; slug: string };
    highlight?: string;
    id: string;
    title: string;
    slug: string;
    year?: number;
    status?: number;
    country?: string;
    alternativeTitles?: { title: string; lang: string }[];
}

Hierarchy (View Summary)

Properties

source: COMICK

Source this entry came from

rating?: string

Rating information (optional)

rating_count?: number
follow_count?: number
user_follow_count?: number
content_rating?: string
demographic?: number
md_titles?: { title: string; lang: string }[]
md_comics?: { id: string; title: string; slug: string }
highlight?: string
id: string

Unique identifier for the manga in the source

title: string

Primary title of the manga

slug: string

URL slug or identifier for detailed lookup

year?: number

Publication year (optional)

status?: number

Publication status (optional)

country?: string

Country of origin (optional)

alternativeTitles?: { title: string; lang: string }[]

Alternative titles in different languages (optional)