UNPKG

masto

Version:

Mastodon API client for JavaScript, TypeScript, Node.js, browsers

12 lines (11 loc) 444 B
import { type Account } from "./account.js"; import { type Collection } from "./collection.js"; /** * A curated Collection of accounts that a user recommends others to follow plus the full account data */ export interface CollectionWithAccounts { /** Full account entities for the owner of the Collection and every account within the Collection. */ accounts: Account[]; /** The actual Collection. */ collection: Collection; }