| 13 | export type { PatternTrend }; |
| 14 | |
| 15 | export interface LibraryUsageStats { |
| 16 | [libraryPath: string]: { |
| 17 | count: number; |
| 18 | examples: string[]; |
| 19 | }; |
| 20 | } |
| 21 | |
| 22 | /** Runtime pattern candidate — extends the base with fields only needed during indexing */ |
| 23 | type RuntimePatternPrimary = PatternCandidateBase & { |
nothing calls this directly
no outgoing calls
no test coverage detected