(groupName: string)
| 2172 | } |
| 2173 | |
| 2174 | function clientHandlerInterfaceName(groupName: string): string { |
| 2175 | return `I${toPascalCase(groupName)}Handler`; |
| 2176 | } |
| 2177 | |
| 2178 | function clientHandlerMethodName(rpcMethod: string): string { |
| 2179 | const parts = rpcMethod.split("."); |
no test coverage detected
searching dependent graphs…