hippofish/packages/megalodon/src/entities/conversation.ts

12 lines
218 B
TypeScript
Raw Normal View History

2023-09-23 18:49:47 +02:00
/// <reference path="account.ts" />
/// <reference path="status.ts" />
namespace Entity {
2023-09-25 01:20:03 +02:00
export type Conversation = {
id: string;
accounts: Array<Account>;
last_status: Status | null;
unread: boolean;
};
2023-09-23 18:49:47 +02:00
}