ultraman-shop
Version:
A React component library for building e-commerce interfaces
15 lines (14 loc) • 497 B
TypeScript
import { FC } from 'react';
import { TableProps } from 'antd';
interface ICockpitTable<T> extends TableProps<T> {
rowClassName?: (record: T, index: number) => string;
activeKeys?: string[] | null;
rowKey?: string;
sortPrefixConfig?: {
[key: string]: any;
} | null;
borderColor?: string;
onChange?: (pagination: any, filters: any, sorter: any, extra: any) => void;
}
declare const CockpitTable: FC<ICockpitTable<any>>;
export default CockpitTable;