woby
Version:
A high-performance framework with fine-grained observable/signal-based reactivity for building rich applications.
16 lines • 735 B
TypeScript
import '../types';
import type { Child, Component, Element } from '../types';
import { Fragment } from '../ssr';
declare function jsx<P extends {} = {}>(component: Component<P>, props?: P, ...children: Child[]): Element;
declare function jsx<P extends {} = {
key?: string;
children?: Child;
}>(component: Component<P>, props?: P, key?: string): Element;
declare const jsxDEV: <P extends {} = {}>(component: Component<P>, props: P | null, key: string, isStatic: boolean, source: {
fileName: string;
lineNumber: number;
columnNumber: number;
}, self: any) => Element;
export declare const getMeta: (target: Element) => any;
export { jsx, jsx as jsxs, jsxDEV, Fragment, };
//# sourceMappingURL=jsx-runtime.ssr.d.ts.map