UNPKG

@visactor/react-vtable

Version:
9 lines (8 loc) 548 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' | 'columnWidthConfig' | 'columns' | 'dragOrder' | 'resize'>, Omit<PivotTableConstructorOptions, 'container'> { } export declare const PivotTableSimple: React.ForwardRefExoticComponent<PivotTableProps & { children?: React.ReactNode; } & import("../containers/withContainer").ContainerProps & React.RefAttributes<any>>;