Skip to main content
The Deno 2 Release Candidate is here
Learn more
Module

x/js2xml/mod.ts>Js2XmlOptions

Convert JavaScript objects to XML
Latest
type alias Js2XmlOptions
import { type Js2XmlOptions } from "https://deno.land/x/js2xml@1.0.4/mod.ts";
definition: { ignoreDeclaration?: boolean; ignoreInstruction?: boolean; ignoreAttributes?: boolean; ignoreText?: boolean; ignoreComment?: boolean; ignoreCdata?: boolean; ignoreDoctype?: boolean; compact?: boolean; indentText?: boolean; indentCdata?: boolean; indentAttributes?: boolean; indentInstruction?: boolean; fullTagEmptyElement?: boolean; noQuotesForNativeAttributes?: boolean; spaces?: number | string; declarationKey?: string; instructionKey?: string; attributesKey?: string; textKey?: string; commentKey?: string; cdataKey?: string; doctypeKey?: string; typeKey?: string; nameKey?: string; elementsKey?: string; }