api/client/types/reaction.ts

12 lines
225 B
TypeScript
Raw Permalink Normal View History

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[];
};