5 lines
320 B
TypeScript
5 lines
320 B
TypeScript
import { ElementNode } from "../index.js";
|
|
import { Fragment } from "../index.js";
|
|
declare function createVNode(type: any, { children, ...attributes }: Record<string, any>, key: string, __self: string, __source: string): ElementNode;
|
|
export { createVNode as jsx, createVNode as jsxs, createVNode as jsxDEV, Fragment, };
|