@aliretail/react-materials-components
Version:
16 lines (15 loc) • 524 B
TypeScript
/// <reference types="react" />
import { Query, ExportResponse, QueryItem } from './type';
interface IProps {
/**
* 获取导出历史接口
*/
onFetchHistory: (currentPage: number, pageSize: number) => Promise<ExportResponse>;
/**
* 翻译查询条件接口
*/
translateQuery: (query: Query) => QueryItem[];
doExport: (query: Query) => void;
}
declare const History: import("react").ForwardRefExoticComponent<IProps & import("react").RefAttributes<unknown>>;
export default History;