(method: RpcMethod)
| 1444 | } |
| 1445 | |
| 1446 | function getMethodResultSchema(method: RpcMethod): JSONSchema7 | undefined { |
| 1447 | return resolveSchema(method.result, rpcDefinitions) ?? method.result ?? undefined; |
| 1448 | } |
| 1449 | |
| 1450 | function resultTypeName(method: RpcMethod): string { |
| 1451 | return getCSharpSchemaTypeName(getMethodResultSchema(method), `${typeToClassName(method.rpcMethod)}Result`); |
no test coverage detected
searching dependent graphs…