mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
37 lines
919 B
TypeScript
37 lines
919 B
TypeScript
// Type definitions for x2js
|
|
// Project: https://code.google.com/p/x2js/
|
|
// Definitions by: Horiuchi_H <https://github.com/horiuchi>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
interface IX2JS {
|
|
new (config?: IX2JSOption): IX2JS;
|
|
|
|
getVersion(): string;
|
|
|
|
xml2json<T>(dom: Node): T;
|
|
json2xml<T>(json: T): Node;
|
|
xml_str2json<T>(xml: string): T;
|
|
json2xml_str<T>(json: T): string;
|
|
parseXmlString(xml: string): Node;
|
|
|
|
asArray(prop: any): any[];
|
|
asDateTime(key: string): string;
|
|
asXmlDateTime(date: Date): string;
|
|
asXmlDateTime(date: number): string;
|
|
}
|
|
|
|
interface IX2JSOption {
|
|
escapeMode?: boolean;
|
|
attributePrefix?: string;
|
|
arrayAccessForm?: string;
|
|
emptyNodeForm?: string;
|
|
enableToStringFunc?: boolean;
|
|
arrayAccessFormPaths?: any[];
|
|
skipEmptyTextNodesForObj?: boolean;
|
|
stripWhitespaces?: boolean;
|
|
datetimeAccessFormPaths?: any[];
|
|
}
|
|
|
|
declare var X2JS: IX2JS;
|
|
|