woby
Version:
A high-performance framework with fine-grained observable/signal-based reactivity for building rich applications.
9 lines • 354 B
TypeScript
import type { Child, Component, Element } from '../types';
declare function h<P extends {
children?: Child;
} = {}>(component: Component<P>, child: Child): Element;
declare function h<P extends {
children?: Child;
} = {}>(component: Component<P>, props?: P | null, ...children: Child[]): Element;
export default h;
//# sourceMappingURL=h.d.ts.map