2.0.4 • Published 6 months ago

@types/jstoxml v2.0.4

Weekly downloads
-
License
MIT
Repository
github
Last release
6 months ago

Installation

npm install --save @types/jstoxml

Summary

This package contains type definitions for jstoxml (https://github.com/davidcalhoun/jstoxml).

Details

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/jstoxml.

index.d.ts

// Type definitions for jstoxml 2.0
// Project: https://github.com/davidcalhoun/jstoxml
// Definitions by: Steven Snoeijen <https://github.com/stevensnoeijen>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped

interface XmlAttrs {
    [name: string]: unknown;
}

export interface XmlElement {
    /**
     * Element's name
     */
    _name?: string | undefined;

    /**
     * Element's attributes.
     */
    _attrs?: XmlAttrs | XmlAttrs[] | undefined;

    /**
     * Element's content.
     */
    _content?: XmlElement | XmlElement[] | unknown | undefined;

    /**
     * Another way to create (sub)-elements (like in _content).
     */
    [key: string]: XmlElement | XmlElement[] | unknown;
}

export interface XmlOptions {
    /**
     * Tree depth.
     * @default 0
     */
    depth?: number | undefined;

    /**
     * By default elements are intented with 1 whitespace per depth.
     * @default " "
     */
    indent?: string | undefined;

    /**
     * Set Custom XML header when given a string,
     * when setting to true the default xml header will be added.
     * @default false
     */
    header?: string | boolean | undefined;

    /**
     * Custom filter for XML entities.
     */
    filter?: { [char: string]: string } | undefined;

    /**
     * Custom filter for XML attributes
     * Default filters are:
     * @example
     * <code>
     * const defaultEntityFilter = {
     *   "<": "&lt;",
     *   ">": "&gt;",
     *   "&": "&amp;",
     * };
     * </code>
     * Setting this to `false` disables attribute filters.
     */
    attributesFilter?: {} | undefined;

    /**
     * If for some reason you want to avoid self-closing tags, you can pass in a special config option _selfCloseTag.
     * @default true
     */
    _selfCloseTag?: boolean | undefined;
}

export function toXML(obj?: XmlElement | XmlElement[], options?: XmlOptions): string;

// do not export every type by default
export {};

Additional Details

  • Last updated: Thu, 16 Dec 2021 22:32:01 GMT
  • Dependencies: none
  • Global values: none

Credits

These definitions were written by Steven Snoeijen.

2.0.3

7 months ago

2.0.4

6 months ago

2.0.2

2 years ago

2.0.1

3 years ago

2.0.0

3 years ago