masto
Version:
Mastodon API client for JavaScript, TypeScript, Node.js, browsers
12 lines (11 loc) • 383 B
TypeScript
import { type Account } from "./account.js";
/**
* Represents a subset of your follows who also follow some other user.
* @see https://docs.joinmastodon.org/entities/FamiliarFollowers/
*/
export interface FamiliarFollowers {
/** The ID of the Account in the database. */
id: string;
/** Accounts you follow that also follow this account. */
accounts: Account[];
}