12345678910111213141516171819202122232425262728 |
- /*
- * @Author: your name
- * @Date: 2021-09-27 10:46:48
- * @LastEditTime: 2021-09-27 17:56:12
- * @LastEditors: Please set LastEditors
- * @Description: In User Settings Edit
- * @FilePath: /MedicalWisdomCheckSys/src/components/MccsEditableTable/typings.d.ts
- */
- declare namespace MccsEditableTableType {
- type RowDataType = {
- [key:string]:any
- }
-
- type MccsEditableTableProps = {
- columns:any[],
- request?:Promise,
- addHandle?:(data:any)=>void,
- editHandle?:(data:any)=>void,
- reload?:boolean,
- [key:string]:any
- }
- }
|