| 23 | |
| 24 | // For command line arguments, so they are nullable |
| 25 | export interface Arguments { |
| 26 | sslKey? : string; |
| 27 | sslCert? : string; |
| 28 | sslKeyPassphrase? : string; |
| 29 | port? : number; |
| 30 | hostname? : string; |
| 31 | dataDir? : string; |
| 32 | stacksDir? : string; |
| 33 | enableConsole? : boolean; |
| 34 | } |
| 35 | |
| 36 | // Some config values are required |
| 37 | export interface Config extends Arguments { |
nothing calls this directly
no outgoing calls
no test coverage detected