Minimal serializable representation of a chat message
| 43 | |
| 44 | /** Minimal serializable representation of a chat message */ |
| 45 | interface CachedMsg { |
| 46 | id: number; |
| 47 | senderId: number; |
| 48 | date: number; |
| 49 | text: string; |
| 50 | } |
| 51 | |
| 52 | interface CachedChat { |
| 53 | username?: string; |
nothing calls this directly
no outgoing calls
no test coverage detected