masto
    Preparing search index...

    Interface SearchParams

    interface SearchParams {
        accountId?: string | null;
        limit?: number | null;
        maxId?: string | null;
        minId?: string | null;
        q: string;
        resolve?: boolean | null;
        sinceId?: string | null;
        type?: (keyof SearchTypeRegistry) | null;
    }

    Hierarchy (View Summary)

    Index

    Properties

    accountId?: string | null

    If provided, statuses returned will be authored only by this account

    limit?: number | null

    Maximum number of results to return per page. Defaults to 40. NOTE: Pagination is done with the Link header from the response.

    maxId?: string | null

    Return results older than this ID.

    minId?: string | null

    Get a list of items with ID greater than this value excluding this ID

    q: string

    Attempt WebFinger lookup. Defaults to false.

    resolve?: boolean | null

    Attempt WebFinger look-up

    sinceId?: string | null

    Return results newer than this ID.

    type?: (keyof SearchTypeRegistry) | null

    Enum(accounts, hashtags, statuses)