UNPKG

@visactor/openinula-vchart

Version:

The openinula version of VChart 4.x

11 lines (10 loc) 396 B
import React from 'openinula'; export interface BaseComponentProps { id?: string | number; } type ComponentProps = BaseComponentProps & { updateId?: number; componentId?: number; }; export declare const createComponent: <T extends ComponentProps>(componentName: string, specName: string, supportedEvents?: Record<string, string> | null, isSingle?: boolean) => React.FC<T>; export {};