| 11 | } |
| 12 | |
| 13 | export interface SSLOptions { |
| 14 | ca?: string; |
| 15 | cert?: string; |
| 16 | key?: string; |
| 17 | minVersion?: string; |
| 18 | rejectUnauthorized?: boolean; |
| 19 | } |
| 20 | |
| 21 | export interface Connection { |
| 22 | id: Id; |
nothing calls this directly
no outgoing calls
no test coverage detected