2025-10-01 19:55:38 +02:00

17 lines
516 B
TypeScript

import { XMLElement } from './XMLElement';
export declare function mutateNodeNS(node: XMLElement, parentNS?: {
[name: string]: string;
}): XMLElementUtil;
export interface XMLElementUtil extends XMLElement {
declaration?: any;
attributes: any;
elements: XMLElementUtil[];
name: string;
type: string;
findIndex(name: string): number;
find(name: string): XMLElementUtil;
findMany(name: string): XMLElementUtil[];
findText(): string;
findTexts(): string[];
}