9 lines
592 B
TypeScript
9 lines
592 B
TypeScript
import React from 'react';
|
|
import type { ParamsType, ProTableProps } from '@ant-design/pro-components';
|
|
import { AnyObject } from 'antd/es/_util/type';
|
|
export interface TimeTemplateTableProps<DataSource, Params extends ParamsType = ParamsType, ValueType = "text"> extends ProTableProps<DataSource, Params, ValueType> {
|
|
onItemBlur?: (value?: number | string, id?: any, record?: any) => void;
|
|
}
|
|
declare const TimeTemplateTable: <DataSource extends AnyObject = AnyObject>(props: TimeTemplateTableProps<DataSource, ParamsType, "text">) => React.JSX.Element;
|
|
export default TimeTemplateTable;
|