(content: string)
| 1281 | } |
| 1282 | |
| 1283 | function extractIconNameFromContent(content: string): string | null { |
| 1284 | const iconMatch = content.match(/icon\s*:\s*(\w+Icon)/) |
| 1285 | return iconMatch ? iconMatch[1] : null |
| 1286 | } |
| 1287 | |
| 1288 | function extractOutputsFromContent(content: string): Record<string, any> { |
| 1289 | const outputsStart = content.search(/outputs\s*:\s*{/) |
no outgoing calls
no test coverage detected