refactor(form): 简化 FormListOptionDependencies 类型定义
- 移除 Array<(NamePath<Values> | number)[]> 类型定义master
parent
e9b32b49d1
commit
9657273866
|
|
@ -15,7 +15,7 @@ export type FormListOptionName<Values> = [number, NamePath<Values>];
|
|||
/**
|
||||
* Form.List 依赖项类型
|
||||
*/
|
||||
export type FormListOptionDependencies<Values> = Array<(NamePath<Values> | number)[]> | NamePath<Values>;
|
||||
export type FormListOptionDependencies<Values> = NamePath<Values>;
|
||||
|
||||
/**
|
||||
* 选择项数据类型
|
||||
|
|
|
|||
Loading…
Reference in New Issue