UNPKG

@furystack/shades

Version:

A lightweight UI framework for FuryStack with JSX support

6 lines 354 B
/** * The type for children passed to Shade components and intrinsic JSX elements. * Supports strings, HTML/SVG elements, JSX elements, and nested arrays of these. */ export type ChildrenList = Array<string | HTMLElement | SVGElement | JSX.Element | string[] | HTMLElement[] | SVGElement[] | JSX.Element[]>; //# sourceMappingURL=children-list.d.ts.map