| 22 | type ChatRole = "system" | "user" | "assistant" | "tool"; |
| 23 | |
| 24 | interface ChatMessage { |
| 25 | id: number; |
| 26 | role: ChatRole; |
| 27 | text: string; |
| 28 | } |
| 29 | |
| 30 | interface AuthReadyState { |
| 31 | status: "ready"; |
nothing calls this directly
no outgoing calls
no test coverage detected