Files
dexpr/editor/node_modules/crelt/dist/index.d.cts
2026-04-05 16:08:59 +03:00

5 lines
280 B
TypeScript

type Child = string | Node | null | undefined | readonly Child[]
export default function crelt(elt: string | HTMLElement, attrs: {[attr: string]: any}, ...children: Child[]): HTMLElement
export default function crelt(elt: string | HTMLElement, ...children: Child[]): HTMLElement