refactor(form): 简化 FormListOptionDependencies 类型定义

- 移除 Array<(NamePath<Values> | number)[]> 类型定义
master
LiuJiaNan 2026-05-15 11:21:10 +08:00
parent e9b32b49d1
commit 9657273866
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@ export type FormListOptionName<Values> = [number, NamePath<Values>];
/** /**
* Form.List * Form.List
*/ */
export type FormListOptionDependencies<Values> = Array<(NamePath<Values> | number)[]> | NamePath<Values>; export type FormListOptionDependencies<Values> = NamePath<Values>;
/** /**
* *