(xml: string, options?: ParseOptions)
| 31 | * @throws {XmlSyntaxError} If the XML is malformed or has no root element. |
| 32 | */ |
| 33 | export function parse(xml: string, options?: ParseOptions): XmlDocument { |
| 34 | return parseSync(xml, options); |
| 35 | } |
no test coverage detected