* 完善所有用到的type对象,并添加中文注释

* 补充遗失的type
This commit is contained in:
xiaoFjun-eng
2026-05-19 09:05:04 +08:00
committed by GitHub
parent c499bfb4ed
commit ea399f1862
68 changed files with 986 additions and 208 deletions

View File

@@ -1,2 +1,5 @@
// Auto-generated stub — replace with real implementation
export type Option = any
/** CustomSelect / 权限规则列表等处的简单选项。 */
export type Option = {
label: string // 展示给用户的文本
value: string // 选中后回传的内部值(如规则 key、占位符
}