(c: ConfigurationEntry | HostConfigurationDirective)
| 207 | } |
| 208 | |
| 209 | function isHostDirective(c: ConfigurationEntry | HostConfigurationDirective): c is HostConfigurationDirective { |
| 210 | return isDirective(c) && c.param === 'Host' && !!c.value && !!(c as HostConfigurationDirective).config; |
| 211 | } |
| 212 | |
| 213 | /** |
| 214 | * List of props that we care about and should be case-normalized, should match ResolvedConfiguration type |
no test coverage detected