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

12 lines
223 B
TypeScript
Raw Normal View History

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