api/client/types/conversation.ts

10 lines
214 B
TypeScript
Raw Normal View History

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