UNPKG

tsx-dom-ssr

Version:

A simple way to use tsx syntax to do async server-side-rendering.

4 lines (3 loc) 246 B
import type { BaseProps, FC, ComponentChildren } from "./types"; export declare function createElement(tag: string | FC, props: BaseProps | null, ...children: ComponentChildren[]): ComponentChildren; export declare const h: typeof createElement;