(obj: DeepPartial<defaultTableOptions>)
| 43 | * @returns |
| 44 | */ |
| 45 | export const createTableOptions = (obj: DeepPartial<defaultTableOptions>): defaultTableOptions => { |
| 46 | const r = reactive(_.merge(_.cloneDeep(DEFAULTTABLEOPTIONS), _.cloneDeep(obj))); |
| 47 | r.ModalConfig.form = createFormOptions(r.ModalConfig.form) |
| 48 | return r; |
| 49 | } |
| 50 | |
| 51 | /** |
| 52 | * 类型定义 |
nothing calls this directly
no test coverage detected