Files
HRM-System/node_modules/crelt/index.d.ts
2026-04-13 08:19:53 +08: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