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

8 lines
149 B
TypeScript

export interface XMLElement {
declaration?: any;
attributes?: any;
elements?: XMLElement[];
name: string;
type: string;
}