UNPKG

@visactor/react-vtable

Version:

The react version of VTable

14 lines (13 loc) 660 B
import type React from 'react'; import type { PivotChartConstructorOptions } from '@visactor/vtable'; import type { BaseTableProps } from './base-table'; interface AnyRecords { records: Record<string, unknown>[]; } export interface PivotChartProps extends Omit<BaseTableProps, 'records'>, Omit<PivotChartConstructorOptions, 'container' | 'records'>, AnyRecords { } export declare const PivotChart: React.ForwardRefExoticComponent<PivotChartProps & { children?: React.ReactNode; } & import("../containers/withContainer").ContainerProps & React.RefAttributes<any>>; export declare function registerChartModule(name: string, chart: any): void; export {};