Send a text message to a specific channel/chat
(channelId: string, text: string)
| 247 | export interface MessageSender { |
| 248 | /** Send a text message to a specific channel/chat */ |
| 249 | sendMessage(channelId: string, text: string): Promise<void>; |
| 250 | /** Send a file to a specific channel/chat */ |
| 251 | sendFile?(channelId: string, filePath: string, caption?: string): Promise<void>; |
| 252 | } |
no outgoing calls
no test coverage detected