(method: RpcMethod)
| 415 | } |
| 416 | |
| 417 | function getMethodResultSchema(method: RpcMethod): JSONSchema7 | undefined { |
| 418 | return resolveSchema(method.result, rpcDefinitions) ?? method.result ?? undefined; |
| 419 | } |
| 420 | |
| 421 | function getMethodParamsSchema(method: RpcMethod): JSONSchema7 | undefined { |
| 422 | return ( |
no test coverage detected
searching dependent graphs…