(schema: JSONSchema7 | undefined)
| 447 | } |
| 448 | |
| 449 | function isNamedGoObjectSchema(schema: JSONSchema7 | undefined): schema is JSONSchema7 { |
| 450 | return !!schema && schema.type === "object" && (schema.properties !== undefined || schema.additionalProperties === false); |
| 451 | } |
| 452 | |
| 453 | function getMethodResultSchema(method: RpcMethod): JSONSchema7 | undefined { |
| 454 | return resolveSchema(method.result, rpcDefinitions) ?? method.result ?? undefined; |
no outgoing calls
no test coverage detected
searching dependent graphs…