(method: RpcMethod, resultSchema: JSONSchema7 | undefined)
| 764 | } |
| 765 | |
| 766 | function rpcResultDescription(method: RpcMethod, resultSchema: JSONSchema7 | undefined): string | undefined { |
| 767 | if (isVoidSchema(resultSchema)) return undefined; |
| 768 | return method.result?.description ?? resultSchema?.description; |
| 769 | } |
| 770 | |
| 771 | function rpcParamsDescription(method: RpcMethod, effectiveParams: JSONSchema7 | undefined): string | undefined { |
| 772 | return method.params?.description ?? effectiveParams?.description; |
no test coverage detected
searching dependent graphs…