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