| | |
| | | * @return {*} |
| | | */ |
| | | export interface EntityCustFunctionType { |
| | | CreateAction: (fnName: string) => {}; |
| | | CreateAction: (type: string) => {}; |
| | | ActionItem: (params: Recordable<any>, data, ...args) => ActionItem[]; |
| | | EditOperation: (data: Ref<any[]>, d, u, item: string | undefined) => void; |
| | | OpenSelectItem: (openItemModal: Fn, ...args) => void; |
| | |
| | | CustInitData: (data: Ref<any[]>, keyFieldValues: Ref<{}>, type: string) => void | any; |
| | | GetCustData: () => {}; |
| | | GetRightMenuList: (node: EventDataNode, ...args) => ContextMenuItem[]; |
| | | GetNewRow: (type: string) => {}; |
| | | } |