AniLink - v1.29.2
    Preparing search index...

    UsersVariables is an interface representing the variables for the UsersQuery. It includes optional page, per page, id, name, is moderator, search, sort, as html, anime stat limit, manga stat limit, anime stat sort, and manga stat sort.

    interface UsersVariables {
        animeStatLimit?: number;
        animeStatSort?: string[];
        asHtml?: boolean;
        id?: number;
        isModerator?: boolean;
        mangaStatLimit?: number;
        mangaStatSort?: string[];
        name?: string;
        page?: number;
        perPage?: number;
        search?: string;
        sort?: string[];
    }
    Index
    animeStatLimit?: number

    animeStatLimit is a number representing the limit for anime statistics.

    animeStatSort?: string[]

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

    asHtml?: boolean

    asHtml is a boolean representing whether to return the result as HTML.

    id?: number

    id is a number representing the id of the user.

    isModerator?: boolean

    isModerator is a boolean representing whether the user is a moderator.

    mangaStatLimit?: number

    mangaStatLimit is a number representing the limit for manga statistics.

    mangaStatSort?: string[]

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

    name?: string

    name is a string representing the name of the user.

    page?: number

    page is a number representing the page number.

    perPage?: number

    perPage is a number representing the number of items per page.

    search?: string

    search is a string representing the search term.

    sort?: string[]

    sort is an array of strings representing the sort order.