Signature for a Solid render function attached to a SolidComponentResolver. Specialises the generic RenderFunction from core/renderer.ts with Solid's JSX.Element output and the Solid-flavoured SolidRenderProps props.
core/renderer.ts
JSX.Element
The compile-time relationship
type Check = SolidRenderFunction extends RenderFunction<JSX.Element, SolidRenderProps> ? true : false; // → true Copy
type Check = SolidRenderFunction extends RenderFunction<JSX.Element, SolidRenderProps> ? true : false; // → true
holds by construction — the Solid renderer plugs into the generic core contract without any per-framework escape hatch.
Signature for a Solid render function attached to a SolidComponentResolver. Specialises the generic RenderFunction from
core/renderer.tswith Solid'sJSX.Elementoutput and the Solid-flavoured SolidRenderProps props.The compile-time relationship
holds by construction — the Solid renderer plugs into the generic core contract without any per-framework escape hatch.