()
| 160 | } |
| 161 | |
| 162 | getChat(): AnusChat { |
| 163 | if (!this.chat) { |
| 164 | throw new Error('Chat not initialized'); |
| 165 | } |
| 166 | return this.chat; |
| 167 | } |
| 168 | |
| 169 | isInitialized(): boolean { |
| 170 | return this.chat !== undefined && this.contentGenerator !== undefined; |
no outgoing calls
no test coverage detected