framework7
Version:
Full featured mobile HTML framework for building iOS & Android apps
11 lines (10 loc) • 599 B
TypeScript
import { VNode, VNodeData } from './vnode.js';
export declare type VNodes = Array<VNode>;
export declare type VNodesSparse = VNode | Array<VNode | undefined | null>;
export declare function h (sel: string): VNode;
export declare function h (sel: string, data: VNodeData): VNode;
export declare function h (sel: string, text: string): VNode;
export declare function h (sel: string, children: VNodesSparse): VNode;
export declare function h (sel: string, data: VNodeData, text: string): VNode;
export declare function h (sel: string, data: VNodeData, children: VNodesSparse): VNode;
export default h;