Type alias XMLSaveOptions

XMLSaveOptions: {
    declaration?: boolean;
    encoding?: "HTML" | "ASCII" | "UTF-8" | "UTF-16" | "ISO-Latin-1" | "ISO-8859-1";
    flags?: XMLSaveFlags[];
    formatting?: "none" | "pretty" | "full";
    selfCloseEmpty?: boolean;
    type?: "html" | "xml" | "xhtml";
} & {
    format?: boolean;
    whitespace?: boolean;
}

Generated using TypeDoc