UNPKG

@antv/f-engine

Version:

FEngine 是 AntV F 系列可视化引擎的底层渲染引擎,为移动端提供了一套完整的渲染、事件、动画能力,能方便的构建可视化 UI

15 lines (14 loc) 730 B
import { JSX as JSXNamespace } from './jsx-namespace'; import { ElementType } from '../types'; export declare namespace jsx { namespace JSX { type Element = JSXNamespace.Element; type ElementClass = JSXNamespace.ElementClass; type IntrinsicElements = JSXNamespace.IntrinsicElements; type ElementAttributesProperty = JSXNamespace.ElementAttributesProperty; type ElementChildrenAttribute = JSXNamespace.ElementChildrenAttribute; type IntrinsicAttributes = JSXNamespace.IntrinsicAttributes; type IntrinsicClassAttributes = JSXNamespace.IntrinsicClassAttributes; } } export declare function jsx(type: ElementType, config: any, ...children: any[]): JSXNamespace.Element;