UNPKG

422 BTypeScriptView Raw
1import { JSX as JSXNamespace } from './jsx-namespace';
2import { ElementType } from '../types';
3export declare namespace jsx {
4 namespace JSX {
5 type Element = JSXNamespace.Element;
6 type ElementClass = JSXNamespace.ElementClass;
7 type IntrinsicElements = JSXNamespace.IntrinsicElements;
8 }
9}
10export declare function jsx(type: ElementType, config: any, ...children: any[]): JSXNamespace.Element;