AniLink - v1.29.2
    Preparing search index...

    Interface FollowerVariables

    FollowerVariables is an interface representing the variables for the FollowerQuery. It includes optional userId, sort, asHtml, animeStatLimit, mangaStatLimit, animeStatSort, and mangaStatSort.

    interface FollowerVariables {
        animeStatLimit?: number;
        animeStatSort?: UserStatisticSort[];
        asHtml?: boolean;
        mangaStatLimit?: number;
        mangaStatSort?: UserStatisticSort[];
        sort?: UserSort;
        userId: number;
    }
    Index
    animeStatLimit?: number

    animeStatLimit is a number representing the limit for anime statistics.

    animeStatSort?: UserStatisticSort[]

    animeStatSort is an array of strings representing the sort order for anime statistics.

    asHtml?: boolean

    asHtml is a boolean representing whether the response text is returned as HTML.

    mangaStatLimit?: number

    mangaStatLimit is a number representing the limit for manga statistics.

    mangaStatSort?: UserStatisticSort[]

    mangaStatSort is an array of strings representing the sort order for manga statistics.

    sort?: UserSort

    sort is a string representing the sort order.

    userId: number

    userId is a number representing the id of the user.