Nyora (JavaScript) - v0.1.1
    Preparing search index...

    Interface Manga

    A manga entry as returned in listings and details.

    interface Manga {
        id: string;
        title: string;
        altTitles: string[];
        url: string;
        publicUrl: string;
        rating: number;
        isNsfw: boolean;
        contentRating: string | null;
        coverUrl: string;
        largeCoverUrl: string | null;
        state: string | null;
        authors: string[];
        source: JsonDict;
        sourceId: string;
        description: string;
        tags: JsonDict[];
        chapters: MangaChapter[];
        unread: number;
        progress: number;
    }
    Index

    Properties

    id: string

    Stable manga identifier.

    title: string

    Primary title.

    altTitles: string[]

    Alternative titles.

    url: string

    Source-relative or absolute manga URL.

    publicUrl: string

    Public web URL for the manga, if distinct.

    rating: number

    Normalized rating, or -1 when unknown.

    isNsfw: boolean

    Whether the entry is flagged adult/NSFW.

    contentRating: string | null

    Source-provided content rating, if any.

    coverUrl: string

    Cover thumbnail URL.

    largeCoverUrl: string | null

    High-resolution cover URL, if available.

    state: string | null

    Publication state (e.g. ongoing/finished), if known.

    authors: string[]

    Author names.

    source: JsonDict

    Raw source metadata as an object.

    sourceId: string

    Identifier of the owning source.

    description: string

    Synopsis text.

    tags: JsonDict[]

    Genre/tag objects.

    chapters: MangaChapter[]

    Chapters, when already loaded.

    unread: number

    Unread chapter count, for library entries.

    progress: number

    Read progress fraction, for library entries.