(method: RpcMethod)
| 1448 | } |
| 1449 | |
| 1450 | function resultTypeName(method: RpcMethod): string { |
| 1451 | return getCSharpSchemaTypeName(getMethodResultSchema(method), `${typeToClassName(method.rpcMethod)}Result`); |
| 1452 | } |
| 1453 | |
| 1454 | function getCSharpSchemaTypeName(schema: JSONSchema7 | null | undefined, fallback: string): string { |
| 1455 | if (schema?.$ref) return typeToClassName(refTypeName(schema.$ref, rpcDefinitions)); |
no test coverage detected
searching dependent graphs…