| 9 | * Result of parsing API markdown exports |
| 10 | */ |
| 11 | export interface ApiMarkdownExports { |
| 12 | // Map of symbol name to the source file paths where it's exported |
| 13 | symbolToFiles: Map<string, Set<string>>; |
| 14 | // Set of all relevant *.api.md files found |
| 15 | apiMdFiles: Set<string>; |
| 16 | } |
| 17 | |
| 18 | /** |
| 19 | * Utility class for parsing *.api.md files generated by API Extractor |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…