16 lines
629 B
TypeScript
16 lines
629 B
TypeScript
import 'antd/lib/table/style';
|
|
import 'antd/lib/typography/style';
|
|
import type { ParamsType } from '@ant-design/pro-provider';
|
|
import type Summary from 'rc-table/lib/Footer/Summary';
|
|
import type { ProTableProps } from './typing';
|
|
/**
|
|
* 🏆 Use Ant Design Table like a Pro! 更快 更好 更方便
|
|
*
|
|
* @param props
|
|
*/
|
|
declare const ProviderTableContainer: {
|
|
<DataType extends Record<string, any>, Params extends ParamsType = ParamsType, ValueType = "text">(props: ProTableProps<DataType, Params, ValueType>): import("react/jsx-runtime").JSX.Element;
|
|
Summary: typeof Summary;
|
|
};
|
|
export default ProviderTableContainer;
|