mirror of
https://github.com/CompassConnections/Compass.git
synced 2026-04-15 12:07:13 -04:00
14 lines
336 B
TypeScript
14 lines
336 B
TypeScript
import {type JSONContent} from '@tiptap/core'
|
|
export type ChatVisibility = 'private' | 'system_status' | 'introduction'
|
|
|
|
export type ChatMessage = {
|
|
id: number
|
|
userId: string
|
|
channelId: string
|
|
content: JSONContent
|
|
createdTime: number // TODO: switch to Date
|
|
visibility: ChatVisibility
|
|
isEdited: boolean
|
|
reactions: any
|
|
}
|