server/types/entities/conversation.ts
2024-04-06 19:30:49 -10:00

10 lines
226 B
TypeScript

import type { APIAccount } from "./account";
import type { APIStatus } from "./status";
export interface APIConversation {
id: string;
accounts: APIAccount[];
last_status: APIStatus | null;
unread: boolean;
}