UNPKG

@jay-js/ui

Version:

A library of UI components for Jay JS with Tailwind CSS and daisyUI.

7 lines (6 loc) 245 B
interface ISetChildrenOptions { clean?: boolean; deepClean?: boolean; } type TChildren = (string | Node) | (string | Node)[]; export declare function setChildren(element: HTMLElement, children: TChildren, options?: ISetChildrenOptions);