| 6 | import { WhatsAppClient, InboundMessage } from './whatsapp.js'; |
| 7 | |
| 8 | interface SendCommand { |
| 9 | type: 'send'; |
| 10 | to: string; |
| 11 | text: string; |
| 12 | } |
| 13 | |
| 14 | interface BridgeMessage { |
| 15 | type: 'message' | 'status' | 'qr' | 'error'; |
nothing calls this directly
no outgoing calls
no test coverage detected