tdesign-react
Version:
TDesign Component for React
14 lines (13 loc) • 1.45 kB
TypeScript
import './style/index.js';
export * from './type';
export * from './interface';
/**
* @deprecated
* @description SimpleTable is going to be deprecated, use BaseTable instead.
*/
export declare const SimpleTable: <T extends import("./type").TableRowData = import("./type").TableRowData>(props: import("./interface").BaseTableProps<T> & import("react").RefAttributes<import("./interface").BaseTableRef>) => React.ReactElement;
export declare const BaseTable: <T extends import("./type").TableRowData = import("./type").TableRowData>(props: import("./interface").BaseTableProps<T> & import("react").RefAttributes<import("./interface").BaseTableRef>) => React.ReactElement;
export declare const PrimaryTable: <T extends import("./type").TableRowData = import("./type").TableRowData>(props: import("./interface").PrimaryTableProps<T> & import("react").RefAttributes<import("./interface").PrimaryTableRef>) => React.ReactElement;
export declare const Table: <T extends import("./type").TableRowData = import("./type").TableRowData>(props: import("./interface").PrimaryTableProps<T> & import("react").RefAttributes<import("./interface").PrimaryTableRef>) => React.ReactElement;
export declare const EnhancedTable: <T extends import("./type").TableRowData = import("./type").TableRowData>(props: import("./interface").EnhancedTableProps<T> & import("react").RefAttributes<import("./interface").EnhancedTableRef>) => React.ReactElement;
export default Table;