(method: RpcMethod, resultSchema: JSONSchema7 | undefined)
| 272 | } |
| 273 | |
| 274 | function goRpcResultDescription(method: RpcMethod, resultSchema: JSONSchema7 | undefined): string | undefined { |
| 275 | if (isVoidSchema(resultSchema)) return undefined; |
| 276 | return method.result?.description ?? resultSchema?.description; |
| 277 | } |
| 278 | |
| 279 | function goRpcParamsDescription(method: RpcMethod, effectiveParams: JSONSchema7 | undefined): string | undefined { |
| 280 | return method.params?.description ?? effectiveParams?.description; |
no test coverage detected
searching dependent graphs…