Files
claude-code/src/components/ui/option.ts
xiaoFjun-eng ea399f1862 Fix type (#1239)
* 完善所有用到的type对象,并添加中文注释

* 补充遗失的type
2026-05-19 09:05:04 +08:00

6 lines
212 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
/** CustomSelect / 权限规则列表等处的简单选项。 */
export type Option = {
label: string // 展示给用户的文本
value: string // 选中后回传的内部值(如规则 key、占位符
}