UNPKG

ag-grid-community

Version:

Advanced Data Grid / Data Table supporting Javascript / React / AngularJS / Web Components

20 lines (19 loc) 557 B
import { BeanStub } from "./context/beanStub"; export declare class XmlFactory extends BeanStub { createXml(xmlElement: XmlElement, booleanTransformer?: (currentValue: boolean) => string): string; private returnAttributeIfPopulated; } export interface XmlElement { name: string; properties?: XmlAttributes; children?: XmlElement[]; textNode?: string; } export interface XmlAttributes { prefixedAttributes?: PrefixedXmlAttributes[]; rawMap?: any; } export interface PrefixedXmlAttributes { prefix: string; map: any; }