xml-from-object
Version:
Easy, highly typed and customizable way to build your xml using JS/TS plain objects.
9 lines (8 loc) • 411 B
TypeScript
import { FromObjectSchema } from "./from-object-schema";
import { SchemaFieldAttributes } from "./schema-field-attributes";
import { SchemaFieldOptions } from "./schema-field-options";
export declare type SchemaFieldValue = {
value: string | string[] | boolean | number | null | undefined | FromObjectSchema | FromObjectSchema[];
options?: SchemaFieldOptions;
attributes?: SchemaFieldAttributes;
};