UNPKG

tsbase

Version:

Base class libraries for TypeScript

19 lines (18 loc) 673 B
/** * This feature is currently in development - it is not exported from System/module or the package root for this reason. * It may meet your needs, however, it may change significantly without being reflected such in the package version */ export declare class Xml { private constructor(); /** * Returns the XML string representation of the given json object * @param json */ static FromJson(json: object, rootNodeName?: string, schema?: string): string; /** * Returns the parsed json representation of the given xml string * @param xml */ static ToJson<T>(xml: string): T; private static getXmlStringFromValue; }