import { HyperInstance, ComponentSymbol, PropsSymbol, ChildrenSymbol } from "./elements" declare global { interface MainModule { h: typeof h } } export function h(component: Component, props: Props, ...children: Children): HyperInstance { return { [ComponentSymbol]: component, [PropsSymbol]: props, [ChildrenSymbol]: children } }