Skip to main content
Module

x/xml/utils/types.ts>ParserOptions

📑 A XML parser/stringifier for Deno written in typescript and with no dependencies
Go to Latest
type alias ParserOptions
import { type ParserOptions } from "https://deno.land/x/xml@2.0.4/utils/types.ts";

Parser options

definition: { reviveBooleans?: boolean; reviveNumbers?: boolean; emptyToNull?: boolean; debug?: boolean; flatten?: boolean; progress?: (bytes: number) => void; reviver?: (this: node, options: { key: string; value: unknown; tag: string; properties: null | { [key: string]: unknown; }; }) => unknown; }