3fd2b55406
This reverts commit 89eea5df52
.
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
|
|
}
|
|
}
|