schema-components - v3.7.0
    Preparing search index...

    Type Alias SolidRenderFunction

    SolidRenderFunction: RenderFunction<JSX.Element, SolidRenderProps>

    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.

    The compile-time relationship

    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.