Initial commit
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
+15
@@ -0,0 +1,15 @@
|
||||
export declare class XElement {
|
||||
readonly name: string;
|
||||
value: string;
|
||||
attributes: Record<string, string> | null;
|
||||
isCData: boolean;
|
||||
elements: Array<XElement> | null;
|
||||
constructor(name: string);
|
||||
attribute(name: string): string;
|
||||
removeAttribute(name: string): void;
|
||||
element(name: string, ignoreCase?: boolean, errorIfMissed?: string | null): XElement;
|
||||
elementOrNull(name: string, ignoreCase?: boolean): XElement | null;
|
||||
getElements(name: string, ignoreCase?: boolean): XElement[];
|
||||
elementValueOrEmpty(name: string, ignoreCase?: boolean): string;
|
||||
}
|
||||
export declare function parseXml(data: string): XElement;
|
||||
Reference in New Issue
Block a user