xml-disassembler
Version:
Disassemble XML files into smaller, more manageable files and reassemble the XML when needed.
6 lines (5 loc) • 365 B
TypeScript
export declare function transformToYaml(xmlPath: string): Promise<void>;
export declare function transformToJson5(xmlPath: string): Promise<void>;
export declare function transformToJson(xmlPath: string): Promise<void>;
export declare function transformToToml(xmlPath: string): Promise<void>;
export declare function transformToIni(xmlPath: string): Promise<void>;