mirror of
https://github.com/DanielnetoDotCom/YouPHPTube
synced 2025-10-03 17:59:55 +02:00
4 lines
280 B
TypeScript
4 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
|