UNPKG

@visactor/openinula-vchart

Version:

The openinula version of VChart 4.x

10 lines (9 loc) 353 B
import React from 'openinula'; 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) => React.FC<T & { updateId?: number; componentId?: string; }>;