/** * No XML parser is used * We use our own method to parse XML using brute-force */ export declare type XMLNodeContent = XMLElement | string; export interface XMLElement { tag: string; attributes: Record; childs: XMLNodeContent[]; xmlChild: Record; } export declare enum XMLTokenType { STARTTAG = 0, ENDTAG = 1, SELFCLOSETAG = 2, TEXT = 3 } export interface XMLToken { data: string; type: XMLTokenType; } //# sourceMappingURL=xmlelement.d.ts.map