masto
    Preparing search index...

    Type Alias PartialAccountWithAvatar

    PartialAccountWithAvatar: Pick<
        mastodon.v1.Account,
        "id"
        | "acct"
        | "url"
        | "avatar"
        | "avatarStatic"
        | "locked"
        | "bot",
    >

    These are stripped-down versions of Account that only contain what is necessary to display a list of avatars, as well as a few other useful properties. The aim is to cut back on expensive server-side serialization and reduce the network payload size of notification groups.