@book000/pixivts - v0.61.1
    Preparing search index...

    Interface NovelListPage

    Page response for novel list endpoints (search, related, ranking, etc.).

    interface NovelListPage {
        nextUrl: string | null;
        novels: PixivNovelItem[];
        showAi?: boolean;
    }
    Index

    Properties

    nextUrl: string | null

    URL to the next page, or null when this is the last page.

    novels: PixivNovelItem[]

    Novels on this page.

    showAi?: boolean

    Whether AI-generated works are shown in the results.

    Only present on search responses; absent on related/ranking/recommended endpoints.