aboutsummaryrefslogtreecommitdiffstats
path: root/packages/typescript-typings/types/xml-js/index.d.ts
blob: 8e4873aebf91444fc8d9b87d69dc2ff462399a43 (plain) (blame)
1
2
3
4
5
6
7
declare interface XML2JSONOpts {
    compact?: boolean;
    spaces?: number;
}
declare module 'xml-js' {
    const xml2json: (xml: string, opts: XML2JSONOpts) => string;
}