(messageId: string)
| 90 | } |
| 91 | |
| 92 | export function deleteMessage(messageId: string) { |
| 93 | return getManager().deleteMessage(messageId) |
| 94 | } |
| 95 | |
| 96 | export function deleteMessagesFrom(aiChatId: string, messageId: string) { |
| 97 | return getManager().deleteMessagesFrom(aiChatId, messageId) |
nothing calls this directly
no test coverage detected