Interface SerializerOptions<T>

interface SerializerOptions {
    scriptingEnabled?: boolean;
    treeAdapter?: TreeAdapter<T>;
}

Type Parameters

Properties

scriptingEnabled?: boolean

The scripting flag. If set to true, noscript element content will not be escaped.

Default

true

treeAdapter?: TreeAdapter<T>

Specifies input tree format.

Default

treeAdapters.default

Generated using TypeDoc