mirror of
https://codeberg.org/yeentown/barkey.git
synced 2025-10-27 19:44:14 +00:00
11 lines
223 B
TypeScript
11 lines
223 B
TypeScript
/// <reference path="account.ts" />
|
|
/// <reference path="status.ts" />
|
|
|
|
namespace Entity {
|
|
export type Conversation = {
|
|
id: string
|
|
accounts: Array<Account>
|
|
last_status: Status | null
|
|
unread: boolean
|
|
}
|
|
}
|