(h: BotHandler<TState>)
| 196 | export interface Bot<TState = unknown> { |
| 197 | onMention(h: BotHandler<TState>): void; |
| 198 | onMessage(h: BotHandler<TState>): void; |
| 199 | /** |
| 200 | * A conversation surface opened (e.g. the Slack assistant pane). Greet, set |
| 201 | * suggested prompts, set a title, or run the agent. Adapters without the |
no outgoing calls