* Called when an element starts. * @param colonIndex Index of ':' in name, or -1 if no prefix. * @param uri The resolved namespace URI if the element has a bound prefix, undefined otherwise.
(
name: string,
colonIndex: number,
uri: string | undefined,
attributes: XmlAttributeIterator,
selfClosing: boolean,
line: number,
column: number,
offset: number,
)
| 423 | * @param uri The resolved namespace URI if the element has a bound prefix, undefined otherwise. |
| 424 | */ |
| 425 | onStartElement?( |
| 426 | name: string, |
| 427 | colonIndex: number, |
| 428 | uri: string | undefined, |