init
This commit is contained in:
17
mc_test/node_modules/builder-util-runtime/out/xml.d.ts
generated
vendored
Executable file
17
mc_test/node_modules/builder-util-runtime/out/xml.d.ts
generated
vendored
Executable file
@ -0,0 +1,17 @@
|
||||
export declare class XElement {
|
||||
readonly name: string;
|
||||
value: string;
|
||||
attributes: {
|
||||
[key: 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