UNPKG

@yunser/ui-std

Version:

UI standard specification.

10 lines (9 loc) 138 B
/** * XML 对象 */ export interface XmlObject { type: string; attr?: object; _data?: string; children?: XmlObject[]; }