Skip to main content
Module

x/xml2js/options.ts>Xml2JsOptions

Parse XML into JavaScript objects
Latest
type alias Xml2JsOptions
import { type Xml2JsOptions } from "https://deno.land/x/xml2js@1.0.0/options.ts";
definition: { ignoreDeclaration?: boolean; ignoreInstruction?: boolean; ignoreAttributes?: boolean; ignoreText?: boolean; ignoreComment?: boolean; ignoreCdata?: boolean; ignoreDoctype?: boolean; compact?: boolean; alwaysChildren?: boolean; trim?: boolean; nativeType?: boolean; nativeTypeAttributes?: boolean; sanitize?: boolean; instructionHasAttributes?: boolean; captureSpacesBetweenElements?: boolean; alwaysArray?: boolean | string[]; declarationKey?: string; instructionKey?: string; attributesKey?: string; textKey?: string; commentKey?: string; cdataKey?: string; doctypeKey?: string; typeKey?: string; nameKey?: string; elementsKey?: string; parentKey?: string; }