mirror of
https://github.com/versia-pub/api.git
synced 2025-12-06 16:38:20 +01:00
12 lines
232 B
TypeScript
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>;
|
|
};
|