@visactor/openinula-vtable
Version:
The openinula version of VTable
11 lines (10 loc) • 510 B
TypeScript
import type Inula from 'openinula';
import type { PivotTableConstructorOptions } from '@visactor/vtable';
import type { BaseTableProps } from './base-table';
export interface PivotTableProps extends Omit<BaseTableProps, 'records' | 'type'>, Omit<PivotTableConstructorOptions, 'container'> {
}
export declare const PivotTable: Inula.ExoticComponent<PivotTableProps & {
children?: Inula.InulaNode;
} & import("../containers/withContainer").ContainerProps> & Inula.Attributes & {
ref?: Inula.Ref<any>;
};