UNPKG

@visactor/openinula-vtable

Version:

The openinula version of VTable

10 lines (9 loc) 495 B
import type Inula from 'openinula'; import type { PivotChartConstructorOptions } from '@visactor/vtable'; import type { BaseTableProps } from './base-table'; export interface PivotChartProps extends Omit<BaseTableProps, 'records' | 'type'>, Omit<PivotChartConstructorOptions, 'container'> { } export declare const PivotChart: Inula.ExoticComponent<Omit<any, "ref">> & Inula.Attributes & { ref?: Inula.Ref<any>; }; export declare function registerChartModule(name: string, chart: any): void;