1
0
Files
pawkey-sk/packages/megalodon/src/pleroma/entities/conversation.ts
T
2023-09-24 01:44:53 +02:00

12 lines
230 B
TypeScript

/// <reference path="account.ts" />
/// <reference path="status.ts" />
namespace PleromaEntity {
export type Conversation = {
id: string
accounts: Array<Account>
last_status: Status | null
unread: boolean
}
}