| 1234567891011121314151617181920 |
- export interface XmlElement {
- name: string;
- properties?: XmlAttributes;
- children?: XmlElement[];
- textNode?: string | null;
- }
- export interface HeaderElement {
- [key: string]: string | undefined;
- version?: string;
- standalone?: string;
- encoding?: string;
- }
- export interface XmlAttributes {
- prefixedAttributes?: PrefixedXmlAttributes[];
- rawMap?: any;
- }
- export interface PrefixedXmlAttributes {
- prefix: string;
- map: any;
- }
|