(method: RpcMethod)
| 1490 | } |
| 1491 | |
| 1492 | function resolveMethodParamsSchema(method: RpcMethod): JSONSchema7 | undefined { |
| 1493 | return ( |
| 1494 | resolveObjectSchema(method.params, rpcDefinitions) ?? |
| 1495 | resolveSchema(method.params, rpcDefinitions) ?? |
| 1496 | method.params ?? |
| 1497 | undefined |
| 1498 | ); |
| 1499 | } |
| 1500 | |
| 1501 | function stableStringify(value: unknown): string { |
| 1502 | if (Array.isArray(value)) { |
no test coverage detected
searching dependent graphs…