1 | import { VNode, VNodeData } from './vnode';
|
2 | export declare function h(sel: string): VNode;
|
3 | export declare function h(sel: string, data: VNodeData): VNode;
|
4 | export declare function h(sel: string, text: string): VNode;
|
5 | export declare function h(sel: string, children: Array<VNode>): VNode;
|
6 | export declare function h(sel: string, data: VNodeData, text: string): VNode;
|
7 | export declare function h(sel: string, data: VNodeData, children: Array<VNode>): VNode;
|
8 | export default h;
|