(group: string)
| 391 | } |
| 392 | |
| 393 | function renderImportedGroup(group: string) { |
| 394 | return { |
| 395 | imports: [group], |
| 396 | source: `const Api = HttpApi.make("generated").add(${group})\n\n`, |
| 397 | } |
| 398 | } |
| 399 | |
| 400 | function renderImportedProjection(groups: ReadonlyArray<Group>, endpoints: Readonly<Record<string, string>>) { |
| 401 | const imports = groups.flatMap((group) => |
no outgoing calls
no test coverage detected