api/client/types/reaction.ts
2024-06-19 12:21:34 -10:00

12 lines
222 B
TypeScript

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