| 19 | } |
| 20 | |
| 21 | export interface Connection { |
| 22 | id: Id; |
| 23 | title: string; |
| 24 | engineType: Engine; |
| 25 | host: string; |
| 26 | port: string; |
| 27 | username: string; |
| 28 | password: string; |
| 29 | // database is only required for PostgreSQL. |
| 30 | database?: string; |
| 31 | // encrypt is only required for MSSQL. |
| 32 | encrypt?: boolean; |
| 33 | ssl?: SSLOptions; |
| 34 | } |
nothing calls this directly
no outgoing calls
no test coverage detected