template-project/node_modules/simple-xml-to-json/typings/simple-xml-to-json.d.ts
2025-05-30 18:13:30 +08:00

10 lines
262 B
TypeScript

declare module 'simple-xml-to-json' {
interface ASTConverter {
convert: (astAsJson: object) => any;
}
export function convertXML(xmlAsString: string, customConverter?: ASTConverter): any;
export function createAST(xmlAsString: string): object;
}