UNPKG

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