UNPKG

xml2customjs

Version:

Library to custom convert an XML into a Javascript object or JSON

9 lines (8 loc) 214 B
export interface XmlToJsOptionalOptions { arrayFields?: string[]; objectFields?: string[]; fieldNameFormat?: 'camel' | 'snake' | 'none'; fieldNameMapping?: { [key: string]: string; }; }