8 lines
149 B
TypeScript
8 lines
149 B
TypeScript
export interface XMLElement {
|
|
declaration?: any;
|
|
attributes?: any;
|
|
elements?: XMLElement[];
|
|
name: string;
|
|
type: string;
|
|
}
|