UNPKG

simple-dom-make

Version:

A lightweight helper to build DOM trees dynamically.

8 lines 196 B
export type NodeStructure = { tag: (keyof HTMLElementTagNameMap) | 'TEXTNODE', attributes?: { [key: string]: string; }, content?: string, children?: NodeStructure[]; };