UNPKG

ag-grid-community

Version:

Advanced Data Grid / Data Table supporting Javascript / Typescript / React / Angular / Vue

21 lines (20 loc) 465 B
export interface XmlElement { name: string; properties?: XmlAttributes; children?: XmlElement[]; textNode?: string | null; } export interface HeaderElement { [key: string]: string | undefined; version?: string; standalone?: string; encoding?: string; } export interface XmlAttributes { prefixedAttributes?: PrefixedXmlAttributes[]; rawMap?: any; } export interface PrefixedXmlAttributes { prefix: string; map: any; }