| 9 | type MessageStatus = "LOADING" | "DONE" | "FAILED"; |
| 10 | |
| 11 | export interface Message { |
| 12 | id: Id; |
| 13 | conversationId: string; |
| 14 | creatorId: Id; |
| 15 | creatorRole: CreatorRole; |
| 16 | createdAt: Timestamp; |
| 17 | content: string; |
| 18 | status: MessageStatus; |
| 19 | } |
nothing calls this directly
no outgoing calls
no test coverage detected