tntd
Version:
tntd是基于 TNT Design 设计体系的 React UI 组件库,主要用于研发企业级中后台产品。
14 lines • 553 B
TypeScript
import React from 'react';
import type { TableProps as AntdTableProps } from 'antd/lib/table';
declare type CustomTableProps<T> = Omit<AntdTableProps<T>, 'locale'> & {
resizable?: boolean;
};
declare const Table: {
(props: CustomTableProps<any>): React.JSX.Element;
Column: typeof import("antd/lib/table/Column").default;
ColumnGroup: typeof import("antd/lib/table/ColumnGroup").default;
displayName: string;
titleCaseUpper: (str: any, upperCaseIgnore?: any[]) => any;
};
export { Table };
//# sourceMappingURL=table-hoc.d.ts.map