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

    Interface UserListPage

    Page response for GET /v2/user/list.

    NOTE: unlike sibling endpoints (following, follower, mypixiv, related, recommended), the live pixiv API returns this list under a users key with plain PixivUser objects, not user_previews with PixivUserPreviewItem (confirmed by direct API verification; no user_previews wrapper is present on the wire for this endpoint).

    interface UserListPage {
        nextUrl: string | null;
        users: PixivUser[];
    }
    Index
    nextUrl: string | null

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

    users: PixivUser[]

    User items on this page.