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

    Interface UserSearchParams

    Parameters for searching users.

    interface UserSearchParams {
        duration?: "within_last_day" | "within_last_week" | "within_last_month";
        filter?: "for_ios" | "for_android";
        offset?: number;
        sort?: "date_desc" | "date_asc" | "popular_desc";
        word: string;
    }
    Index
    duration?: "within_last_day" | "within_last_week" | "within_last_month"

    Date range preset filter (omit for no restriction).

    filter?: "for_ios" | "for_android"

    OS filter to apply (default: "for_ios").

    offset?: number

    Zero-based offset for pagination.

    sort?: "date_desc" | "date_asc" | "popular_desc"

    Sort order for results (default: "date_desc").

    word: string

    Search keyword.