api/client/types/reaction.ts
2024-09-16 12:48:52 +02:00

12 lines
225 B
TypeScript

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