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

    Interface MangaChapter

    A chapter belonging to a manga.

    interface MangaChapter {
        id: string;
        title: string;
        number: number;
        volume: number;
        url: string;
        scanlator: string | null;
        uploadDate: number;
        branch: string | null;
        pages: MangaPage[];
        index: number;
    }
    Index

    Properties

    id: string

    Stable chapter identifier.

    title: string

    Display title.

    number: number

    Chapter number (may be fractional).

    volume: number

    Volume number, or 0 if unknown.

    url: string

    Source-relative or absolute chapter URL.

    scanlator: string | null

    Scanlation group, if known.

    uploadDate: number

    Upload timestamp in epoch milliseconds.

    branch: string | null

    Scanlation branch/translation name, if any.

    pages: MangaPage[]

    Resolved pages, when already loaded.

    index: number

    Position within the chapter list.