(method: RpcMethod)
| 451 | } |
| 452 | |
| 453 | function getMethodResultSchema(method: RpcMethod): JSONSchema7 | undefined { |
| 454 | return resolveSchema(method.result, rpcDefinitions) ?? method.result ?? undefined; |
| 455 | } |
| 456 | |
| 457 | function getMethodParamsSchema(method: RpcMethod): JSONSchema7 | undefined { |
| 458 | return ( |
no test coverage detected
searching dependent graphs…