| 592 | * Result from React component detection |
| 593 | */ |
| 594 | export interface ReactComponentInfo { |
| 595 | /** Full component path like "<App> <Layout> <Button>" */ |
| 596 | path: string | null; |
| 597 | /** Array of component names from innermost to outermost */ |
| 598 | components: string[]; |
| 599 | } |
| 600 | |
| 601 | /** |
| 602 | * Check if a name looks like minified/production code (single letter or very short) |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…