UNPKG

@visactor/react-vtable

Version:

The react version of VTable

9 lines (8 loc) 489 B
import type React from 'react'; import type { PivotTableConstructorOptions } from '@visactor/vtable'; import type { BaseTableProps } from './base-table'; export interface PivotTableProps extends Omit<BaseTableProps, 'records'>, Omit<PivotTableConstructorOptions, 'container'> { } export declare const PivotTableSimple: React.ForwardRefExoticComponent<PivotTableProps & { children?: React.ReactNode; } & import("../containers/withContainer").ContainerProps & React.RefAttributes<any>>;