jstd-web/node_modules/snabbdom/build/h.d.ts

15 lines
799 B
TypeScript
Raw Normal View History

2025-11-25 15:23:22 +08:00
import { VNode, VNodeData } from "./vnode";
export declare type VNodes = VNode[];
export declare type VNodeChildElement = VNode | string | number | String | Number | undefined | null;
export declare type ArrayOrElement<T> = T | T[];
export declare type VNodeChildren = ArrayOrElement<VNodeChildElement>;
export declare function addNS(data: any, children: Array<VNode | string> | undefined, sel: string | undefined): void;
export declare function h(sel: string): VNode;
export declare function h(sel: string, data: VNodeData | null): VNode;
export declare function h(sel: string, children: VNodeChildren): VNode;
export declare function h(sel: string, data: VNodeData | null, children: VNodeChildren): VNode;
/**
* @experimental
*/
export declare function fragment(children: VNodeChildren): VNode;