api/client/types/conversation.ts
2024-06-19 12:21:34 -10:00

10 lines
209 B
TypeScript

import type { Account } from "./account";
import type { Status } from "./status";
export type Conversation = {
id: string;
accounts: Account[];
last_status: Status | null;
unread: boolean;
};