| | |
| | | * @return {*} |
| | | */ |
| | | export interface EntityCustFunctionType { |
| | | CreateAction: (type: string) => {}; |
| | | CreateAction: (type: string, ...args) => {}; |
| | | ActionItem: (params: Recordable<any>, data, ...args) => ActionItem[]; |
| | | EditOperation: (data: Ref<any[]>, d, u, item: string | undefined) => void; |
| | | OpenSelectItem: (openItemModal: Fn, ...args) => void; |
| | |
| | | KeyFieldValues: (val: string, id: string) => {}; |
| | | GetTitle: (type: string | undefined) => {}; |
| | | GetCrudColSlots: () => []; |
| | | nodeChange: ({}) => void; |
| | | nodeChange: ({}) => Promise<any>; |
| | | CreateIcon: (params: Recordable<any>) => string; |
| | | SelectNode: (selectedNodes: Ref<any[]>) => {}; |
| | | GetNavItems: (type: string) => NavItem[]; |
| | |
| | | CustFunc: (param: CustModalParams) => void | any; |
| | | SubmitAll: (data: Ref<any[]>, keyFieldValues: Ref<{}>, ...args) => void | any; |
| | | CustInitData: (data: Ref<any[]>, keyFieldValues: Ref<{}>, type: string) => void | any; |
| | | CustEditEnd: ({ record, index, key, value }: Recordable, type, ...args) => void | any; |
| | | GetCustData: () => {}; |
| | | GetRightMenuList: (node: EventDataNode, ...args) => ContextMenuItem[]; |
| | | GetNewRow: (type: string) => {}; |