| 9 | } |
| 10 | |
| 11 | export interface ChatSession { |
| 12 | id: string; |
| 13 | createdAt: string; |
| 14 | updatedAt: string; |
| 15 | messages: ChatMessage[]; |
| 16 | } |
| 17 | |
| 18 | const STORAGE_KEY = "htmlstream-chat-session-v1"; |
| 19 |
nothing calls this directly
no outgoing calls
no test coverage detected