server/types/mastodon/reaction.ts
2024-04-14 00:53:21 -10:00

12 lines
232 B
TypeScript

import type { Account } from "./account";
export type Reaction = {
count: number;
me: boolean;
name: string;
url?: string;
static_url?: string;
accounts?: Array<Account>;
account_ids?: Array<string>;
};