| 7 | const pkg = "ioredis"; |
| 8 | |
| 9 | interface SpecConnectionDetails extends ConnectionOptions { |
| 10 | pkg: string; |
| 11 | host: string; |
| 12 | password: string; |
| 13 | port: number; |
| 14 | database: number; |
| 15 | namespace: string; |
| 16 | options?: { [key: string]: any }; |
| 17 | redis?: Redis; |
| 18 | } |
| 19 | |
| 20 | interface SpecHelper { |
| 21 | pkg: string; |
nothing calls this directly
no outgoing calls
no test coverage detected