@visactor/react-vtable
Version:
The react version of VTable
9 lines (8 loc) • 542 B
TypeScript
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 PivotTable: React.ForwardRefExoticComponent<PivotTableProps & {
children?: React.ReactNode;
} & import("../containers/withContainer").ContainerProps & React.RefAttributes<any>>;