server/types/mastodon/reaction.ts

12 lines
222 B
TypeScript
Raw Normal View History

2024-04-14 12:53:21 +02:00
import type { Account } from "./account";
export type Reaction = {
count: number;
me: boolean;
name: string;
url?: string;
static_url?: string;
accounts?: Account[];
account_ids?: string[];
2024-04-14 12:53:21 +02:00
};