(rpcMethod: string)
| 4251 | } |
| 4252 | |
| 4253 | function clientHandlerMethodName(rpcMethod: string): string { |
| 4254 | return toPascalCase(rpcMethod.split(".").at(-1)!); |
| 4255 | } |
| 4256 | |
| 4257 | function emitClientSessionApiRegistration(lines: string[], clientSchema: Record<string, unknown>, resolveType: (name: string) => string, unionInfos: Map<string, GoDiscriminatedUnionInfo>): void { |
| 4258 | const groups = collectClientGroups(clientSchema); |
no test coverage detected
searching dependent graphs…