UNPKG

646 BTypeScriptView Raw
1export declare const INDENT_STRING = "\t";
2export declare const NEWLINE_STRING = "\n";
3export declare const DATA_COLUMNS = 68;
4export declare const INDENT_ROOT = false;
5export interface IToXmlOptions {
6 /**
7 * Indent string.
8 *
9 * @default '\t'
10 */
11 indentString?: string | null;
12 /**
13 * Newline string.
14 *
15 * @default '\n'
16 */
17 newlineString?: string | null;
18 /**
19 * Data columns, zero of negative for one row.
20 *
21 * @default 68
22 */
23 dataColumns?: number | null;
24 /**
25 * Indent root element content.
26 *
27 * @default false
28 */
29 indentRoot?: boolean | null;
30}