Type alias XMLParseOptions

XMLParseOptions: {
    baseUrl?: string;
    encoding?: string;
    flags?: XMLParseFlags[];
    nonet?: boolean;
    preserveCDATA?: boolean;
    preserveWhitespace?: boolean;
    recover?: boolean;
    replaceEntities?: boolean;
    url?: string;
    validateAttributes?: boolean;
    validateEntities?: boolean;
} & {
    blanks?: boolean;
    cdata?: boolean;
    dtdattr?: boolean;
    dtdvalid?: boolean;
    noblanks?: true;
    nocdata?: true;
    noent?: boolean;
}

Generated using TypeDoc