| 8 | } |
| 9 | |
| 10 | interface SSLConfig { |
| 11 | ca?: string |
| 12 | cert?: string | null |
| 13 | key?: string |
| 14 | rejectUnauthorized?: boolean |
| 15 | } |
| 16 | |
| 17 | export interface ConnectionOptions { |
| 18 | host: string | null |
nothing calls this directly
no outgoing calls
no test coverage detected