server/types/mastodon/conversation.ts

10 lines
209 B
TypeScript
Raw Normal View History

2024-04-14 12:53:21 +02:00
import type { Account } from "./account";
import type { Status } from "./status";
export type Conversation = {
id: string;
accounts: Account[];
2024-04-14 12:53:21 +02:00
last_status: Status | null;
unread: boolean;
};