(method: RpcMethod)
| 464 | } |
| 465 | |
| 466 | function goResultTypeName(method: RpcMethod): string { |
| 467 | return getRpcSchemaTypeName(getMethodResultSchema(method), toPascalCase(method.rpcMethod) + "Result"); |
| 468 | } |
| 469 | |
| 470 | function goNullableResultTypeName(method: RpcMethod, innerSchema: JSONSchema7): string { |
| 471 | if (innerSchema.$ref) { |
no test coverage detected
searching dependent graphs…