UNPKG

@visactor/react-vchart

Version:

The react version of VChart 4.x

10 lines (9 loc) 377 B
import React from 'react'; import { EventsProps } from '../eventsUtils'; export interface BaseSeriesProps extends EventsProps { id?: string | number; } export declare const createSeries: <T extends BaseSeriesProps>(componentName: string, markNames: string[], type?: string, registers?: (() => void)[]) => React.FC<T & { updateId?: number; componentId?: string; }>;