(slug: string)
| 68 | ); |
| 69 | |
| 70 | const describeCode = (slug: string) => ` |
| 71 | const details = await tools.describe.tool({ path: "${slug}.org.main.issues.listIssues" }); |
| 72 | return { |
| 73 | outputTypeScript: details.outputTypeScript ?? null, |
| 74 | note: details.outputTypeScriptNote ?? null, |
| 75 | error: details.error ?? null, |
| 76 | }; |
| 77 | `; |
| 78 | |
| 79 | type DescribeOutcome = { |
| 80 | readonly outputTypeScript: string | null; |