@gooddata/react-components
Version:
GoodData.UI - A powerful JavaScript library for building analytical applications
16 lines (15 loc) • 507 B
TypeScript
import * as React from "react";
import { IHeaderPredicate } from "../../../interfaces/HeaderPredicate";
import { ITableVisualizationProps } from "./TableVisualization";
export interface IDimensions {
height: number;
width: number;
}
export interface ITableProps extends ITableVisualizationProps {
containerWidth?: number;
containerHeight?: number;
drillablePredicates?: IHeaderPredicate[];
}
export declare class Table extends React.Component<ITableProps> {
render(): JSX.Element;
}