lit-xml
Version:
Burning your XML documents to the ground? Yes please. In the mean time, let's use lit-xml.
13 lines (11 loc) • 409 B
text/typescript
import { Validator } from './validator.js';
export interface LitXmlOptions {
readonly validators: Validator[];
readonly format: boolean;
readonly indent: number;
/**
* Enable strict mode for the template values.
* This mode requires all template values to be a xml primitive (`string | number | boolean | bigint | XmlFragment | XmlFragment[]`)
*/
readonly strictTemplateValues: boolean;
}