| 18 | const VERSION = '0.1.0'; |
| 19 | |
| 20 | export interface InboundMessage { |
| 21 | id: string; |
| 22 | sender: string; |
| 23 | pn: string; |
| 24 | content: string; |
| 25 | timestamp: number; |
| 26 | isGroup: boolean; |
| 27 | } |
| 28 | |
| 29 | export interface WhatsAppClientOptions { |
| 30 | authDir: string; |
nothing calls this directly
no outgoing calls
no test coverage detected