()
| 147 | } |
| 148 | |
| 149 | get networkEndpoints(): Record<string, IEndpointConfig> | undefined { |
| 150 | return normalizeNetworkEndpoints( |
| 151 | this._config.networkEndpoint as string | string[] | Record<string, IEndpointConfig> |
| 152 | ); |
| 153 | } |
| 154 | |
| 155 | get primaryNetworkEndpoint(): [string, IEndpointConfig] | undefined { |
| 156 | return this._config.primaryNetworkEndpoint; |
nothing calls this directly
no test coverage detected