| 189 | } |
| 190 | |
| 191 | export interface HttpClientOptions<ServiceType extends BaseServiceType> { |
| 192 | server: string; |
| 193 | proto: ServiceProto<ServiceType>; |
| 194 | logger: Logger; |
| 195 | /** API超时时间(毫秒) */ |
| 196 | timeout: number; |
| 197 | agent?: http.Agent; |
| 198 | } |
| 199 |
nothing calls this directly
no outgoing calls
no test coverage detected