api/client/types/conversation.ts

10 lines
215 B
TypeScript
Raw Permalink Normal View History

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