Interface SearchAccountsParams

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

Properties

following?: null | boolean

Only who the user is following. Defaults to false.

limit?: null | number

Maximum number of results. Defaults to 40.

q: string

What to search for

resolve?: null | boolean

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