@aliretail/react-materials-components
Version:
29 lines (28 loc) • 870 B
TypeScript
import React from 'react';
declare type TProps = typeof TradeTable.defaultProps;
declare class TradeTable extends React.Component<TProps> {
static propTypes: {
dataSource: any;
extendCells: any;
appendGroupHeader: any;
columns: any;
cellProps: any;
className: any;
};
static defaultProps: {
dataSource: any[];
extendCells: {};
appendGroupHeader: () => void;
columns: any[];
cellProps: () => void;
className: string;
};
renderType: (type: any) => any;
headerRender: (record: any) => JSX.Element;
goodsCell: () => (item: any) => JSX.Element;
deliveryInfoCell: (deliveryInfo: any) => JSX.Element;
priceCell: (itemPrice: any) => JSX.Element;
textCell: (params: any) => JSX.Element;
render(): JSX.Element;
}
export default TradeTable;