| 11 | * Result of parsing XML content. |
| 12 | */ |
| 13 | export interface ParseResult { |
| 14 | success: boolean; |
| 15 | spec: SpecOutput | null; |
| 16 | errors: string[]; |
| 17 | } |
| 18 | |
| 19 | // Configure the XML parser |
| 20 | const parser = new XMLParser({ |
nothing calls this directly
no outgoing calls
no test coverage detected