masto
    Preparing search index...

    Interface SearchAccountsParams

    interface SearchAccountsParams {
        following?: boolean | null;
        limit?: number | null;
        offset?: number | null;
        q: string;
        resolve?: boolean | null;
    }
    Index

    Properties

    following?: boolean | null

    Only who the user is following. Defaults to false.

    limit?: number | null

    Maximum number of results. Defaults to 40.

    offset?: number | null

    Skip the first n results.

    q: string

    What to search for

    resolve?: boolean | null

    Attempt WebFinger lookup. Defaults to false. Use this when q is an exact address.