2024-06-07 03:51:33 +02:00
|
|
|
import type { Account } from "./account";
|
|
|
|
|
|
|
|
|
|
export type Reaction = {
|
|
|
|
|
count: number;
|
|
|
|
|
me: boolean;
|
|
|
|
|
name: string;
|
|
|
|
|
url?: string;
|
|
|
|
|
static_url?: string;
|
2024-06-20 00:21:34 +02:00
|
|
|
accounts?: Account[];
|
|
|
|
|
account_ids?: string[];
|
2024-06-07 03:51:33 +02:00
|
|
|
};
|