(schema: JSONSchema7 | undefined)
| 1330 | } |
| 1331 | |
| 1332 | function isNamedPyObjectSchema(schema: JSONSchema7 | undefined): schema is JSONSchema7 { |
| 1333 | return !!schema && schema.type === "object" && (schema.properties !== undefined || schema.additionalProperties === false); |
| 1334 | } |
| 1335 | |
| 1336 | function getMethodResultSchema(method: RpcMethod): JSONSchema7 | undefined { |
| 1337 | return resolveSchema(method.result, rpcDefinitions) ?? method.result ?? undefined; |
no outgoing calls
no test coverage detected
searching dependent graphs…