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